最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

jsp Request獲取url信息的各種方法對比

 更新時間:2016年10月01日 11:24:29   投稿:jingxian  
下面小編就為大家?guī)硪黄猨sp Request獲取url信息的各種方法對比。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

從Request對象中可以獲取各種路徑信息,以下例子: 

假設(shè)請求的頁面是index.jsp,項目是WebDemo,則在index.jsp中獲取有關(guān)request對象的各種路徑信息如下 

String path = request.getContextPath(); 
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 
String remoteAddress=request.getRemoteAddr(); 
String servletPath=request.getServletPath(); 
String realPath=request.getRealPath("/"); 
String remoteUser=request.getRemoteUser(); 
String requestURI=request.getRequestURI(); 
out.println("path:"+path+"<br>"); 
out.println("basePath:"+basePath+"<br>"); 
out.println("remoteAddr:"+remoteAddress+"<br>"); 
out.println("servletPath:"+servletPath+"<br>"); 
out.println("realPath:"+realPath+"<br>"); 
out.println("remoteUser:"+remoteUser+"<br>"); 
out.println("requestURI:"+requestURI+"<br>"); 

結(jié)果: 

path:/WebDemo 
basePath:http://localhost:8683/WebDemo/ 
remoteAddr:127.0.0.1 
servletPath:/index.jsp 
realPath:D:\apache-tomcat-6.0.13\webapps\WebDemo\ 
remoteUser:null 
requestURI:/WebDemo/index.jsp 

從上不難看出request各個對應(yīng)方法所代表的含義 

從request獲取各種路徑總結(jié): 

request.getRealPath("url");//虛擬目錄映射為實際目錄 
request.getRealPath("./");//網(wǎng)頁所在的目錄 
request.getRealPath("../");//網(wǎng)頁所在目錄的上一層目錄 

假定你的web application(web應(yīng)用)名稱為news,你的瀏覽器中輸入請求路徑:http://localhost:8080/uploading/load.jsp 

request.getContextPath() => /uploading 
request.getServletPath() => /load.jsp 
request.getRequestURL() => http://localhost:8080/uploading/load.jsp 
request.getRealPath("/") =>  F:\learn\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\uploading\ 

現(xiàn)在request.getRealPath("/") 這個方法已經(jīng)不推薦使用了 

可以使用 

ServletContext.getRealPath(java.lang.String) instead. 
request.getSession().getServletContext().getRealPath() 得到工程文件的實際物理路徑,也就是絕對地址 
//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 
// eg./manage/editExam.domethod=goExamSet&type=U 
String url = request.getRequestURI();  
//The returned URL contains a protocol, server name, port number, and server path, but it does not include query string parameters 
//eg. http://127.0.0.1:8080/manage/editExam.domethod=goExamSet&type=U 
StringBuffer url_buffer = request.getRequestURL(); 

HttpServletRequest 的這兩種方法都只能得到不包含參數(shù)的請求url,區(qū)別如下: 

1 前者返回相對路徑,后者返回完整路徑 

2 前者返回string ,后者返回stringbuffer 

得到完整請求url可以通過如下方法,getQueryString()得到的是url后面的參數(shù)串,和前者相加就是帶參數(shù)的請求路徑了 

 String queryString = request.getQueryString(); 
ring fullPath = url + queryString;  // 或者是url_buffer.toString()+queryString; 

以上就是小編為大家?guī)淼膉sp Request獲取url信息的各種方法對比的全部內(nèi)容了,希望對大家有所幫助,多多支持腳本之家~

相關(guān)文章

最新評論

太原市| 金山区| 汉中市| 正镶白旗| 桂平市| 泊头市| 英山县| 南投市| 凤凰县| 崇阳县| 海门市| 科技| 象山县| 绩溪县| 遵义县| 通州区| 石河子市| 岳阳县| 瑞昌市| 花莲县| 电白县| 大连市| 海安县| 仁布县| 临安市| 砚山县| 射阳县| 天柱县| 灵丘县| 宁化县| 晋宁县| 开化县| 邵阳市| 股票| 钟山县| 漯河市| 兴隆县| 弋阳县| 新丰县| 工布江达县| 收藏|