首页 > 代码库 > 路径获取

路径获取

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);