码迷,mamicode.com
首页 > 编程语言 > 详细

Java获取项目路径及classes路径

时间:2018-08-10 19:39:47      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:res   webapps   inf   获取项目路径   pat   otp   apache   public   apach   

以工程名为test为例

1.获取项目绝对路径一

String rootPath = request.getSession().getServletContext().getRealPath("/").replace("\\", "/");
获取内容如下:
D:/apacheTomcat/apache-tomcat-7.0.59/webapps/test/

2.获取web工程名

String projectName = request.getContextPath();
获取内容如下:
/test

3.获取classes路径,最后的.substring(1)是为了去掉前面“/”

public static String getClassesPath(){
    String classesPath=Thread.currentThread().getContextClassLoader().getResource("").getPath().substring(1);
    return classesPath;
}

获取内容如下:
D:/apacheTomcat/apache-tomcat-7.0.59/webapps/test/WEB-INF/classes/

4.获取项目绝对路径二

private static String getProjectRootPath(){
    String rootPath=Thread.currentThread().getContextClassLoader().getResource("").getPath();
    rootPath = rootPath.substring(1,rootPath.indexOf("WEB-INF"));
    return rootPath;
}

获取内容如下:
D:/apacheTomcat/apache-tomcat-7.0.59/webapps/test/

Java获取项目路径及classes路径

标签:res   webapps   inf   获取项目路径   pat   otp   apache   public   apach   

原文地址:http://blog.51cto.com/1197822/2157270

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