一、File类
1.用途:
Java文件类以抽象的方式代表文件名和目录路径名。该类主要用于文件和目录的创建、文件的查找和文件的删除等。
File对象代表磁盘中实际存在的文件和目录
2.构造方法
通过给定的父抽象路径名和子路径名字符串创建一个新的File实例。
File(File parent, String child);
通过将给定路径名字符串转换成抽象路径名来创建一个新 File 实例。
File(String pathname)
根据 parent 路径名字符串和 child 路径名字符串创建一个新 File 实例。
File(String parent, String child)
通过将给定的 file: URI 转换成一个抽象路径名来创建一个新的 File 实例。
File(URI uri)
3.常用方法
- File类的获取功能:
public String getAbsolutePath():获取绝对路径
public String getPath():获取路径
public String getName():获取名称
public String getParent():获取上层文件目录路径。若无,返回null
public String length():获取文件长度(即:字节数)。不能获取目录的长度
public long lastModified():获取最后一次的修改时间,毫秒值
@Test
public void test2(){
File file1=new File("hello.txt");
File file2=new File("d:\\io\\hi.txt");
System.out.println(file1.getAbsolutePath());//D:\workspace_idea1\javasenior\dau\hello.txt
System.out.println(file1.getPath());//hello.txt
System.out.println(file1.getName());//hello.txt
System.out.println(file1.getParent());//null
System.out.println(file1.length());//10-->helloworld
System.out.println(file1.lastModified());//1550910351445
System.out.println(new Date(file1.lastModified()));
System.out.println();
System.out.println(file2.getAbsolutePath());//d:\io\hi.txt
System.out.println(file2.getPath());
System.out.println(file2.getName());
System.out.println(file2.getParent());
System.out.println(file2.length());
System.out.println(file2.lastModified());
}
适用于文件目录:
public String[] list():获取指定目录下的所有文件或文件目录的名称数组
public File[] listFiles():获取指定目录下的所有文件或者文件目录的File数组
@Test
public void test3(){
File file=new File("D:\\workspace_idea1\\javasenior");
String[] list=file.list();
for(String s:list){
System.out.println(s);//输出文件目录名
}
System.out.println();
File[] files=file.listFiles();
for(File f:files){
System.out.println(f);//输出目录的File
}
}
- File类的重命名功能:
public boolean renameTo(File dest):把文件重命名为指定的文件路径
/*
File类的重命名功能:
public boolean renameTo(File dest):把文件重命名为指定的文件路径
比如:file1.renameTo(file2)为例,要想保证返回true,需要file1在硬盘中是存在的,且file2不能在硬盘中存在
*/
@Test
public void test4(){
File file1=new File("hello.txt");
File file2=new File("D:\\io\\hi.txt");
boolean renameTo=file1.renameTo(file1);
System.out.println(renameTo);
}
- File类的判断功能
public boolean isDirectory():判断是否是文件目录
public boolean isFile():判断是否是文件
public boolean exists():判断是否存在
public boolean canRead():判断是否刻度
@Test
public void test5(){
File file1=new File("hello.txt");
//hello.txt存在
System.out.println(file1.isDirectory());//false
System.out.println(file1.isFile());//true
System.out.println(file1.exists());//true
System.out.println(file1.canRead());//true
System.out.println(file1.canWrite());//true
System.out.println(file1.isHidden());//false
file1=new File("hello1.txt");
//hello1.txt不存在
System.out.println(file1.isDirectory());//false
System.out.println(file1.isFile());//false
System.out.println(file1.exists());//false
System.out.println(file1.canRead());//false
System.out.println(file1.canWrite());//false
System.out.println(file1.isHidden());//false
File file2=new File("d:\\io");
//io存在
System.out.println(file1.isDirectory());//true
System.out.println(file1.isFile());//false
System.out.println(file1.exists());//true
System.out.println(file1.canRead());//true
System.out.println(file1.canWrite());//true
System.out.println(file1.isHidden());//false
//io1不存在
file2=new File("d:\\io1");
System.out.println(file1.isDirectory());//false
System.out.println(file1.isFile());//false
System.out.println(file1.exists());//false
System.out.println(file1.canRead());//false
System.out.println(file1.canWrite());//false
System.out.println(file1.isHidden());//false
}
- File类的创建功能
public boolean createNewFile():创建文件。若文件存在,则不创建,返回false。
public boolean mkdir():创建文件目录。如果此文件目录存在,就不创建了。如果此文件目录的上层目录不存在,也不创建。
public boolean mkdirs():创建文件目录。如果上层文件目录不存在,一并创建。
注意:如果创建文件或者文件目录没有写盘符路径,那么默认在项目路径下。
- File类的删除功能
public boolean delete():删除文件或文件夹
删除注意事项:Java中的删除不走回收站,要删除一个文件目录,注意该文件目录内不能包含文件或文件目录
/*4)File类的创建功能
public boolean createNewFile():创建文件。若文件存在,则不创建,返回false。
public boolean mkdir():创建文件目录。如果此文件目录存在,就不创建了。如果此文件目录的上层目录不存在,也不创建。
public boolean mkdirs():创建文件目录。如果上层文件目录不存在,一并创建。
注意:如果创建文件或者文件目录没有写盘符路径,那么默认在项目路径下。
5)File类的删除功能
public boolean delete():删除文件或文件夹
删除注意事项:Java中的删除不走回收站,要删除一个文件目录,注意该文件目录内不能包含文件或文件目录
*/
@Test
public void test6() throws IOException {
//文件的创建
File file1=new File("hi.txt");
if(!file1.exists()){
file1.createNewFile();
System.out.println("创建成功");
}else{//文件存在
file1.delete();
System.out.println("删除成功");
}
}