Java获取路径方法总结
程序员文章站
2022-05-10 07:59:28
...
1 当前类中获取文件
- 代码
FileTest.class.getClassLoader().getResource("file/1.txt").getPath();
String xsdpath =FileTest.class.getClassLoader().getResource("file/1.txt").getPath();
System.out.println(xsdpath);
File file = new File(xsdpath);
System.out.println(file.getPath());
System.out.println(file.isFile());
- 运行结果:
/D:/tool/myeclipse/Workspaces1/ZTest/bin/file/1.txt
D:\tool\myeclipse\Workspaces1\ZTest\bin\file\1.txt
true
上一篇: python import 相对路径