摘:jsp中获取当前路径

来源:互联网 发布:付费问答源码 编辑:程序博客网 时间:2024/05/22 15:32
  1. <%@ page contentType="text/html; charset=gb2312" language="java" import="java.io.*" errorPage="" %>  
  2. <html>  
  3. <head>  
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">  
  5. <title>Untitled Document</title>  
  6. </head>  
  7.   
  8. <body>  
  9. 当前WEB应用的物理路径:<%=application.getRealPath("/")%><BR>  
  10. 当前你求请的JSP文件的物理路径:<%=application.getRealPath(request.getRequestURI())%><BR>  
  11. <%   
  12. String path=application.getRealPath(request.getRequestURI());   
  13. String dir=new File(path).getParent();   
  14. out.println("当前JSP文件所在目录的物理路径"+dir+"</br>");   
  15. String realPath1 = "http://" + request.getServerName() + ":" + request.getServerPort() + request.getContextPath()+request.getServletPath().substring(0,request.getServletPath().lastIndexOf("/")+1);    
  16. out.println("web URL 路径:"+realPath1);   
  17. %>  
  18. </body>  
  19. </html>