1、项目根目录(tomcat、web项目)
String path = ServletActionContext.getServletContext().getRealPath("");
System.out.println(path);
想要获取图片存放的位置,则为String path = ServletActionContext.getServletContext().getRealPath("images");
2、java代码编译后class文件所在的路径(classpath路径)
String serverDir = this.getClass().getClassLoader().getResource("").getPath();
System.out.println(serverDir);
路径获取
时间: 2024-10-13 05:33:14