欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jsp获取文件的绝对路径方法

程序员文章站 2022-03-13 13:35:10
当前web应用的物理路径:<%=application.getrealpath("/")%>当前访问的jsp文件的物理路径:<%=application.getrealpath(r...
当前web应用的物理路径:<%=application.getrealpath("/")%>
当前访问的jsp文件的物理路径:<%=application.getrealpath(request.getrequesturi())%& gt;
当前访问文件的所在目录的物理路径:

<%
    string path=application.getrealpath(request.getrequesturi());
    string dir=new java.io.file(path).getparent();
    out.println("dir);
%>