jsp Request獲取url信息的各類方法比較

Java代碼    收藏代碼
  1. 從Request對象中能夠獲取各類路徑信息,如下例子:  
  2. 假設請求的頁面是index.jsp,項目是WebDemo,則在index.jsp中獲取有關request對象的各類路徑信息以下  
  3. String path = request.getContextPath();  
  4. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";  
  5. String remoteAddress=request.getRemoteAddr();  
  6. String servletPath=request.getServletPath();  
  7. String realPath=request.getRealPath("/");  
  8. String remoteUser=request.getRemoteUser();  
  9. String requestURI=request.getRequestURI();  
  10. out.println("path:"+path+"<br>");  
  11. out.println("basePath:"+basePath+"<br>");  
  12. out.println("remoteAddr:"+remoteAddress+"<br>");  
  13. out.println("servletPath:"+servletPath+"<br>");  
  14. out.println("realPath:"+realPath+"<br>");  
  15. out.println("remoteUser:"+remoteUser+"<br>");  
  16. out.println("requestURI:"+requestURI+"<br>");  
  17. 結果:  
  18. path:/WebDemo  
  19. basePath:http://localhost:8683/WebDemo/  
  20. remoteAddr:127.0.0.1  
  21. servletPath:/index.jsp  
  22. realPath:D:\apache-tomcat-6.0.13\webapps\WebDemo\  
  23. remoteUser:null  
  24. requestURI:/WebDemo/index.jsp  
  25. 從上不難看出request各個對應方法所表明的含義  



Java代碼    收藏代碼
  1. 從request獲取各類路徑總結:  
  2. request.getRealPath("url");//虛擬目錄映射爲實際目錄  
  3. request.getRealPath("./");//網頁所在的目錄  
  4. request.getRealPath("../");//網頁所在目錄的上一層目錄  
  5. 假定你的web application(web應用)名稱爲news,你的瀏覽器中輸入請求路徑:http://localhost:8080/uploading/load.jsp  
  6. request.getContextPath()  =>  /uploading  
  7. request.getServletPath()  =>  /load.jsp  
  8. request.getRequestURL()  =>  http://localhost:8080/uploading/load.jsp  
  9. request.getRealPath("/")  =>   F:\learn\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\uploading\  
  10. 如今request.getRealPath("/") 這個方法已經不推薦使用了  
  11. 能夠使用  
  12. ServletContext.getRealPath(java.lang.String)  instead.  
  13. request.getSession().getServletContext().getRealPath() 獲得工程文件的實際物理路徑,也就是絕對地址  



Java代碼    收藏代碼
    1.       //Returns the part of this request's URL from the protocol name up to the query string in the first line of the HTTP request  
    2.          //  eg.     /manage/editExam.domethod=goExamSet&type=U  
    3.       String url = request.getRequestURI();    
    4.       //The returned URL contains a protocol, server name, port number, and server path, but it does not include query string parameters  
    5.         //eg.      http://127.0.0.1:8080/manage/editExam.domethod=goExamSet&type=U  
    6.       StringBuffer url_buffer = request.getRequestURL();  
    7.   HttpServletRequest 的這兩種方法都只能獲得不包含參數的請求url,區別以下:  
    8. 1 前者返回相對路徑,後者返回完整路徑  
    9. 2 前者返回string ,後者返回stringbuffer  
    10. 獲得完整請求url能夠經過以下方法,getQueryString()獲得的是url後面的參數串,和前者相加就是帶參數的請求路徑了  
    11.   String queryString = request.getQueryString();  
    12. ring fullPath = url + queryString;   // 或者是url_buffer.toString()+queryString; 
相關文章
相關標籤/搜索