美文网首页
java得到文件路径的方法

java得到文件路径的方法

作者: Longwide | 来源:发表于2015-09-02 10:55 被阅读214次
    1. 根据class的resources得到编译后的类路径
    File file = new File("");//任意对象均可
    URL url = file.getClass().getResource("/");
    String path = url.getPath();
    

    得到的项目target后的类路径,资源路径也在下面:

    打印path
    path的路径下的文件
    1. 根据new File("")得到eclipse的项目路径
    File file = new File("");
    System.out.println(file.getCanonicalPath());
    
    项目路径 正好是src和target所在位置
    1. 使用System获取
    System.out.println(System.getProperty("user.dir"));
    
    得到的路径

    相关文章

      网友评论

          本文标题:java得到文件路径的方法

          本文链接:https://www.haomeiwen.com/subject/whjlcttx.html