jsp获取文件的绝对路径方法
程序员文章站
2022-06-26 09:15:01
当前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);
%>
当前访问的jsp文件的物理路径:<%=application.getrealpath(request.getrequesturi())%& gt;
当前访问文件的所在目录的物理路径:
<%
string path=application.getrealpath(request.getrequesturi());
string dir=new java.io.file(path).getparent();
out.println("dir);
%>
上一篇: jQuery中英文数字截取数字
下一篇: Redis概述与安装,数据类型简介