文章目录
- File 类的基本使用
- 构造方法一:
- 构造方法二:
- 使用File类基本操作的方法
- 创建一个新文件
- 案例
- 删除文件
- 判断文件是否存在
- 案例: 编写一个文件的基本操作
- 上述代码存在问题
- 创建目录
- 创建多级目录
- 案例
- 取得文件信息
- 案例一
- 案例二
- 案例三
学好IO, 那么必须清除抽象类, IO 的核心组成: 五个类(File, OutputStream, InputStream, Writer, Reader)一个接口(Serializable)
在 java.io 包之中 File 类是唯一一个与文件本身操作(文件的创建, 删除, 取得文件信息等等)有关的程序类。
File 类的基本使用
java.io.File 类是一个普通的类, 所以这个类直接实例化, 要实例化需要用到两个构造方法:
构造方法一:
public File(String pathname) // 路径名称
构造方法二:
public File(File parent,
String child)
使用File类基本操作的方法
创建一个新文件
public boolean createNewFile()
throws IOException
案例
package com.cwq.beyond;
import java.io.File;
public class test22 {
public static void main(String[] args) throws Exception{
File file = new File("D:\\textDemo.txt");
file.createNewFile();
}
}
删除文件
public boolean delete()
判断文件是否存在
public boolean exists()
案例: 编写一个文件的基本操作
package com.cwq.beyond;
import java.io.File;
public class test22 {
public static void main(String[] args) throws Exception{
File file = new File("D:\\textDemo.txt");
if (file.exists()) {
file.delete();
}else {
file.createNewFile();
}
}
}
上述代码存在问题
- 由于项目一般是windows开发, 在要部署在Unix 或者是 Linux 上, windows下的路径符为
"\"
, 而在Unix 和 Linux 下是"/"
, 所以为了避免这个问题, File 类给定义了一个常量 :public static final String separator
, 即 路径分割符 - 因为在Java里面如果要进行文件的处理操作是要通过本地操作系统支持的, 这之中如果操作的是同名文件, 就有可能出现有延迟的问题。
创建目录
public boolean mkdir()
创建多级目录
public boolean mkdirs()
案例
package com.cwq.beyond;
import java.io.File;
public class test22 {
public static void main(String[] args) throws Exception{
File file = new File("D:"+File.separator+"beyond"+File.separator+"textDemo.txt");
if (!file.getParentFile().exists()) {
file.getParentFile().mkdir();
}
if (file.exists()) {
file.delete();
}else {
file.createNewFile();
}
}
}
取得文件信息
在File中提供了一系列的提取文件信息的方法,如下
- 判断目标路径是否是文件
public boolean isFile()
- 判断目标路径是否是目录
public boolean isDirectory()
- 取得文件大小(字节)
public long length()
- 最后一次修改信息
public long lastModified()
- 列出目录中的全部组成
public File[] listFiles()
案例一
Math.pow(底数,几次方)
package com.cwq.beyond;
import java.io.File;
class BeyMath{
public static double round(double num, int scale) {
return Math.round(num * Math.pow(10, scale)) / Math.pow(10, scale);
}
}
public class test22 {
public static void main(String[] args) throws Exception{
File file = new File("D:"+File.separator+"textDemo.txt");
if (file.exists() && file.isFile()) {
System.out.println("文件大小: "+BeyMath.round(file.length()/(double)1024/1024 , 2));
}
}
}
案例二
package com.cwq.beyond;
import java.io.File;
import java.text.SimpleDateFormat;
import java.util.Date;
class BeyMath{
public static double round(double num, int scale) {
return Math.round(num * Math.pow(10, scale)) / Math.pow(10, scale);
}
}
public class test22 {
public static void main(String[] args) throws Exception{
File file = new File("D:"+File.separator+"textDemo.txt");
if (file.exists() && file.isFile()) {
System.out.println("文件大小: "+BeyMath.round(file.length()/(double)1024/1024 , 2));
System.out.println("最后一次修改日期: "+new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(new Date(file.lastModified())));
}
}
}
案例三
package com.cwq.beyond;
import java.io.File;
import java.text.SimpleDateFormat;
import java.util.Date;
public class test22 {
public static void main(String[] args) throws Exception{
File file = new File("D:"+File.separator);
if (file.isDirectory() && file.exists()) {
File[] files = file.listFiles();
for (int x = 0; x < files.length; x++) {
System.out.println(files[x]);
}
}
}
}