Java获取项目路径的多种方式

88次阅读
没有评论

共计 757 个字符,预计需要花费 2 分钟才能阅读完成。

在 Java 中,可以通过多种方式获取项目路径:

  1. 使用 System.getProperty("user.dir") 方法获取当前工作目录的绝对路径。这个路径通常是运行 Java 程序时所在的目录。
String projectPath = System.getProperty("user.dir");
System.out.println(projectPath);
  1. 使用 Class.getResource() 方法获取类所在的路径。这个路径是相对于类所在的包的路径。
String projectPath = MyClass.class.getResource("").getPath();
System.out.println(projectPath);
  1. 使用 ClassLoader.getResource() 方法获取类加载器所在的路径。这个路径是相对于类加载器的根路径。
ClassLoader classLoader = MyClass.class.getClassLoader();
String projectPath = classLoader.getResource("").getPath();
System.out.println(projectPath);
  1. 使用 ServletContext.getRealPath() 方法获取 Web 应用的根路径。这个路径是 Web 容器运行时动态计算的。
ServletContext servletContext = getServletContext();
String projectPath = servletContext.getRealPath("/");
System.out.println(projectPath);

注意:以上方法中获取的路径都是字符串,可以根据需要进行进一步的处理。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-21发表,共计757字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)