获取Web项目的根目录
如:D:\tomcat\webapps\myproject\
String path = ServletActionContext.getRequest().getSession().getServletContext().getRealPath("/");
获取到Web项目的classes目录
如:D:/tomcat/webapps/myproject/WEB-INF/classes/
String path = this.getClass().getClassLoader().getResource("/").getPath();
作者:itmyhome