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

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
相关标签: java 路径