request.getcontextpath()
<%=request.getcontextpath()%>是為了解決相對路徑的問題,可返回站點的根路徑,即專案名稱。
如果context中沒有配置path屬性,所以你的工程檔案就是在根目錄下,相當於path=」「,request.getcontextpath()獲得的值也就為空;
request.getscheme()
返回的協議名稱,預設是http
request.getservername()
返回的是你瀏覽器中顯示的主機名,你自己試一下就知道了
request.getserverport()
獲取伺服器端口號
<%
string path = request.getcontextpath();
string basepath = request.getscheme()+"://"+request.getservername()
+":"+request.getserverport()+path+"/";
%>
java web中request獲取的各種路徑明義
就是這個專案的根路徑 完整路徑去掉資源檔案部分 request.getcontestpath 獲取到的是 rpt getserveletpath獲取到的是專案中資源的相對路徑 test.jsp getrequesturl獲取的就是在瀏覽器中輸入的完整路徑 test.jsp getquerystrin...
oracle中幾個常用的函式
1 四捨五入函式 round 要處理的數 四捨五入開始的位置,省略預設為0 四捨五入開始的位置,從小數點後一位開始,正數向後移,複數向前移 round 23.45 23 round 23.45,1 23.5 round 23.45,1 20 2 取整函式 ceil 取上限,大的 floor 取下限,...
java web 系列 JDBC常用的API
主要作用 一 註冊驅動 實際開發中註冊驅動會使用如下的方式 class.forname com.mysql.jdbc.driver 因為之前的方式會導致驅動註冊兩次。二 獲得連線 connection getconnection string url,string username,string p...