Java获取Web项目目录路径详解编程语言

获取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();

作者:blog.ytso.com

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/14301.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论