获取jsp的物理路径

当前WEB应用的物理路径:<%=application.getRealPath("/")%>
当前访问的JSP文件的物理路径:<%=application.getRealPath(request.getRequestURI())%& gt;
当前访问jsp文件的所在目录的物理路径:

<%
    String path=application.getRealPath(request.getRequestURI());
    String dir=new java.io.File(path).getParent();
    out.println("dir);
%>


这里还需要说明,其中也可以使用request.getRealPath("/"),可是这个方法已经过时,需要使用

request.getSession().getServletContect().getRealPath()替代,可以得到站点的绝对地址

你可能感兴趣的:(jsp,Web,String,Path)