java中,如何将一个文件截断,只保留前一部分
发布网友
发布时间:2022-04-21 08:58
我来回答
共2个回答
热心网友
时间:2023-07-22 20:46
你说的是不是比如一个路径是“D://text/1.txt”,然后截取出来“D://text/”
File
file
=
new
File
("文件名字");
file.getAbsolutepath()
//获取文件或目录的绝对路径
file.getpath();
//获取文件或目录的路径
热心网友
时间:2023-07-22 20:46
首先定义一个文件类
File
file=new
File("d:"+File.seperator+"demo.txt");(这是你的文件的路径)然后取得上层路径就是
file.getParent
得到的就是你截取后的字符串目录