java classpath linux_Java获取Window和Linux系统的项目ClassPath路径

【本文版权归微信公众号"代码艺术"(ID:onblog)所有,若是转载请务必保留本段原创声明,违者必究。若是文章有不足之处,欢迎关注微信公众号私信与我进行交流!】

不啰嗦,直接复制工具类

/**

* 在windows和linux系统下均可正常使用

* Create by yster@foxmail.com 2018/6/6/006 14:51

*/

public class PathUtil {

//获取项目的根路径

public final static String classPath;

static {

//获取的是classpath路径,适用于读取resources下资源

classPath = Thread.currentThread().getContextClassLoader().getResource("").getPath();

}

/**

* 项目根目录

*/

public static String getRootPath() {

return RootPath("");

}

/**

* 自定义追加路径

*/

public static String getRootPath(String u_path) {

return RootPath("/" + u_path);

}

/**

* 私有处理方法

*/

private static String RootPath(String u_path) {

String rootPath = "";

//windows下

if ("\\".equals(File.separator)) {

//System.out.println(classPath);

rootPath = classPath + u_path;

rootPath = rootPath.replaceAll("/", "\\\\");

if (rootPath.substring(0, 1).equals("\\")) {

rootPath = rootPath.substring(1);

}

}

//linux下

if ("/".equals(File.separator)) {

//System.out.println(classPath);

rootPath = classPath + u_path;

rootPath = rootPath.replaceAll("\\\\", "/");

}

return rootPath;

}

//更多扩展方法任你发挥

}

使用方法

【本文版权归微信公众号"代码艺术"(ID:onblog)所有,若是转载请务必保留本段原创声明,违者必究。若是文章有不足之处,欢迎关注微信公众号私信与我进行交流!】

//自定义追加路径并格式化

System.out.println(ProjectPath.getRootPath("userImg/test.txt"));

//获取根目录

System.out.println(ProjectPath.getRootPath());

注意

在使用System.getProperty("user.dir")时:

如果是在IDE中启动,则获得的路径为D:\xxxx\projectName,包括项目名;

如果是以Jar包方式启动,得到该jar包所在的路径。如project.jar在D:\xxxx下,获得的路径就是D:\xxxx

但是如果是以war包方式启动获得的是:D:\apache-tomcat-9.0.7\bin

所以此方法适合不依赖Tomcat容器(或者内嵌Tomcat如SpringBoot)的项目。

版权声明

【本文版权归微信公众号"代码艺术"(ID:onblog)所有,若是转载请务必保留本段原创声明,违者必究。若是文章有不足之处,欢迎关注微信公众号私信与我进行交流!】

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值