当前位置:   article > 正文

java 解决绝对路径中文乱码_resourceutils.geturl 中文

resourceutils.geturl 中文
  1. String path1 = ResourceUtils.getURL("classpath:static").getPath();
  2. String s = path1.replaceAll("%20", " ");
  3. String decode = URLDecoder.decode(path1, "utf-8");
  4. System.out.println(decode);
  5. System.out.println(path1);
  6. System.out.println(s);
  7. //利用System.getProperty()函数获取当前路径
  8. System.out.println(System.setProperty("user.dir", "c:users"));
  9. System.out.println(System.getProperty("user.dir"));//user.dir指定了当前的路径
  10. //在类中取得类的绝对路径
  11. System.out.println(Class.class.getClass().getResource("/").getPath());
  12. System.out.println(Thread.currentThread().getContextClassLoader().getResource("./static").getPath());
  13. System.out.println(Thread.currentThread().getContextClassLoader().getResource("").getPath());//ClassPath的绝对URI路径
  14. System.out.println(Thread.currentThread().getContextClassLoader().getResource(".").getPath());//项目的绝对路径

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/255606
推荐阅读
相关标签
  

闽ICP备14008679号