java中一个文件路径,怎么截取他上层目录的路径
发布网友
发布时间:2022-05-13 17:56
我来回答
共2个回答
热心网友
时间:2023-08-01 22:27
你说的是不是比如一个路径是“D://text/1.txt”,然后截取出来“D://text/”
File
file
=
new
File
("文件名字");
file.getAbsolutepath()
//获取文件或目录的绝对路径
file.getpath();
//获取文件或目录的路径
热心网友
时间:2023-08-01 22:27
首先定义一个文件类
File
file=new
File("d:"+File.seperator+"demo.txt");(这是你的文件的路径)然后取得上层路径就是
file.getParent
得到的就是你截取后的字符串目录