1、Servlet中的init方法中可以用
String path=getServletContext.getPath("/");
这里是获取Web项目的全路径。
例如 :E:\eclipseM9\workspace\tree\
tree是我web项目的根目录
2、可以在任意Class中调用
this.class.getClass().getClassLoder().getResourse().getPath("/");
这里获取的是所有classes的路径。
例如:E:\eclipseM9/workspace/tree/WEB-INF/classes/
3、request.getContextPath();
获得web根的上下文环境。
4、JAVA 取得当前目录的路径
File file=new File(“.”);
String path=file.getAbsolutePath();
path=file.getPath();
原文地址:http://7883830.blog.51cto.com/7873830/1571100