file类的常用方法总结,file类的常用方法名
公共静态void main(){
File=newfile(相对路径或绝对路径);
//文件信息
system . out . println(file . is file());//是文件吗?
system . out . println(file . is directory());//是文件夹吗?
system . out . println(file . exists());//有这个文件吗?
system . out . println(file . length());//文件字符
System.out.printf(%tF % tT%n ,file . last modified());//项目创建时间
system . out . println(file . getname());//获取文件名
system . out . println(file . getpath());//获取文件相对路径
system . out . println(file . getabsolutepath());//获取文件名的绝对路径
//目录文件获取文件的绝对路径
string t=file . getabsolutepath();
system . out . println(t . substring(0,t . lastindexof( \ )));
//文件基本名称
system . out . println(t . substring(t . lastindexof( . )))
}
版权归作者所有:原创作品来自博主黑_黑皮,转载授权请联系作者,否则将追究法律责任。
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。