程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> jsp獲取url路徑的方法分析,jsp獲取url路徑

jsp獲取url路徑的方法分析,jsp獲取url路徑

編輯:關於JSP

jsp獲取url路徑的方法分析,jsp獲取url路徑


本文實例講述了jsp獲取url路徑的方法。分享給大家供大家參考,具體如下:

如果你請求的URL是  http://localhost:8080/demo/Index.jsp

request.getScheme()  //輸出:http

request.getServerName()  //輸出: localhost

request.getServerPort() //輸出: 8080

request.getContextPath()  //輸出: /demo

request.getRequestPath() //輸出: /Index.jsp

request.gerRequestURI() //輸出:  /demo/Index.jsp

request.getRequestURL() //輸出: http://localhost:8080/demo/Index.jsp

request.getRealPath("") //輸出:D:\apache-tomcat-6.0.10\webapps\demo

上面幾個我都驗證過了,除了request.getRequestPath() 無法使用外(估計這個函數已經被廢棄掉了吧),其它的顯示都正確。

希望本文所述對大家JSP程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved