根据jsp, servlet, 普通类,可以把获得web工程的路径方法分为3种
1.jsp
<%=application.getRealPath("") %> <%=request.getRealPath("") %>2.servlet(当然包括了action等,只要能获得servlet)
servletContext.getRealPath("");
3.普通类
System.getProperty("user.dir")
本文共 270 字,大约阅读时间需要 1 分钟。
根据jsp, servlet, 普通类,可以把获得web工程的路径方法分为3种
1.jsp
<%=application.getRealPath("") %> <%=request.getRealPath("") %>2.servlet(当然包括了action等,只要能获得servlet)
servletContext.getRealPath("");
3.普通类
System.getProperty("user.dir")
转载于:https://my.oschina.net/laichendong/blog/283849