获取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();
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/14301.html