码迷,mamicode.com
首页 > 其他好文 > 详细

获取项目路径的几种方法

时间:2016-12-18 01:33:14      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:workspace   getc   blank   ret   style   root   根目录   object   函数   

Java获取当前项目路径:

 

  • object.class.getResource()方法获得当前生成的class的绝对路径(此方法在jar包中无效,因为他获得的是生成的class的路径,返回的内容最后包含/)
    public String getCurrentPath(){  
           //取得根目录路径  
           String rootPath=getClass().getResource("/").getFile().toString();  
           //当前目录路径  
           String currentPath1=getClass().getResource(".").getFile().toString();  
           String currentPath2=getClass().getResource("").getFile().toString();  
           //当前目录的上级目录路径  
           String parentPath=getClass().getResource("../").getFile().toString();  
             
           return rootPath;         
      
       }  

     

    • 利用System.getProperty()函数获取当前路径,得到项目文件夹的根目录,不带/ 

     

    例如 项目在 D:\workspace\testPorjject

    者System.getProperty("user.dir") 返回 D:\workspace\testPorjject 

    System.out.println(System.getProperty("user.dir"));//user.dir指定了当前的路径   

     

获取项目路径的几种方法

标签:workspace   getc   blank   ret   style   root   根目录   object   函数   

原文地址:http://www.cnblogs.com/zipon/p/6193529.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!