欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java File类的详解及简单实例

程序员文章站 2024-02-24 09:37:04
java file类的详解及简单实例 1. file():构造函数,一般是依据文件所在的指定位置来创建文件对象。  canwrite(...

java file类的详解及简单实例

1. file():构造函数,一般是依据文件所在的指定位置来创建文件对象。 

canwrite():返回文件是否可写。 
canread():返回文件是否可读。 
compareto(file pathname):检查指定文件路径间的顺序。 
delet():从文件系统内删除该文件。 
deleteonexit():程序顺利结束时从系统中删除文件。 
equals(object obj):检查特定对象的路径名是否相等。 
exists():判断文件夹是否存在。 
getabsolutefile():返回文件的完整路径。 
getabsolutepath():返回文件的完整路径。 
getname():返回文件名称。 
getparent():返回文件父目录路径。 
getpath():返回文件的潜在相对路径。 
getparentfile():返回文件所在文件夹的路径。 
hashcode():返回文件哈希码。 
isdirectory():判断该路径指示的是否是文件。 
isfile():判断该路径指示的是否是文件。 
lastmodified() :返回文件的最后修改时间标志。 
length():返回文件长度。 
list():返回文件和目录清单。 
mkdir():生成指定的目录。 
renameto(file dest):更名文件。 
setreadonly():将文件设置为可读。 
tostring():返回文件状态的字符串。 
tourl():将文件的路径字符串转换成url 


file.getcreationtime 读取创建时间 
file.setcreationtime 设置创建时间 
2. file.getlastaccesstime 读取最后访问时间 
3. file.setlastaccesstime 设置最后访问时间 
file.getlastwritetime 读取最后修改时间 
4. file.setlastwritetime 设置最后修改时间 
file.getattributes 读取文件属性 
 file.setattributes 设置文件属性 

实践篇章:

import java.io.file; 


public class filecontent { 
/* file 类的常见用法: 
1、建立文件的方法 
 
*/ 
public static void createfile(){ 
/* window 中建立文件的方法 */ 
file file1 = new file("c:\\tmep\\myword.txt"); 

/* 较为安全建立文件的方法 */ 
file file2 = new file("c:"+file.separator+"temp"+file.separator+"myword.java"); 

//file.separator 是文件路径的符号==\\ 
} 

/* 相关属性的介绍 */ 
public static void main(string[] args){ 
file myfile = new file("c:"+file.separator+"word.txt"); 

try{ 
//创建文件 
//myfile.createnewfile(); 
}catch(exception ex){ 

} 

//获取文件的名称 ==word.txt 
system.out.println(myfile.getname()); 

//获取文件的路径 ==c:\word.txt 
system.out.println(myfile.getpath()); 

//判断文件是否完整 
system.out.println(myfile.isabsolute()); 

//获取文件的根目录 ==c:\ 
system.out.println(myfile.getparent()); 
myfile.exists(); //判断文件是否存在 

system.out.println("判断是否是目录:"+myfile.isdirectory()); 
system.out.println("判断是否是文件:"+myfile.isfile()); 
system.out.println("判断是否是隐藏文件:"+myfile.ishidden()); 
system.out.println("判断是否可读:"+myfile.canread()); 
system.out.println("判断是否可写:"+myfile.canwrite()); 

//mkdir();创建单级目录 
//mkdirs();创建多级目录 
//createnewfile(); 创建文件 
// try{ 
// file tmp = file.createtempfile("foo", "tmp");//建立临时文件 
//  system.out.println("刚才建立的临时文件在:" + tmp.getcanonicalpath()); 
// }catch(exception ex){ 

// } 
show(); 

} 

//获得所有的跟 并计算剩余的空间 
public static void show() { 
 file[] roots = file.listroots();//取得所有的根,如果是windows系统那么将取得所有的磁盘 
  for (int i = 0; i < roots.length; i++) { 
  system.out.println(roots[i]); 
  system.out.println("free space = " + roots[i].getfreespace()); 
  system.out.println("usable space = " + roots[i].getusablespace()); 
  system.out.println("total space = " + roots[i].gettotalspace()); 
  system.out.println(); 
  } 
 } 

} 

如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!