1.
1<%
2 string path =request.getcontextpath();
3 string basepath = request.getscheme()+"://"+request.getservername()+":"+request.getserverport()+path+"/";
5 %>
string path = request.getcontextpath();
string basepath = request.getscheme()+"://"+request.getservername()+request.getserverport()+path+"/";
複習一下request 的常用方法:
request.getschema()可以返回當前頁面使用的協議,http 或是 https;
request.getservername()可以返回當前頁面所在的伺服器的名字;
request.getserverport()可以返回當前頁面所在的伺服器使用的埠,就是80;
request.getcontextpath()可以返回當前頁面所在的應用的名字;
shell基本系統維護命令(學習筆記)
獲取聯機幫助 man 使用man命令可以找到特定的聯機幫助頁,並提供簡短的命令說明。一般語法格式為 man commandname 聯機幫助頁提供了指定命令commandname的相關資訊,包括 名稱 函式 語法以及可選引數描述等。無論幫助有多長,都遵循這個格式顯 示。在頁面很多的情況下使用page...
Hadoop學習筆記(五)日誌系統
hadoop目錄儲存在 hadoop home logs hadoop日誌存在兩種格式 log 通過log4j日誌記錄格式進行記錄的,hadoop home conf log4.propertiesj進行配置。採用日常滾動檔案字尾策略來命名日誌檔案,內容較詳細。out 記錄標準輸出和標準錯誤的日誌,...
作業系統學習筆記(2)
前台 和 後台 邏輯上的 分時系統 分時 批處理 這兩個概念的提出是為了進一步不讓處理機空閒,因為在作業流在調入調出的時間內,cpu是空閒的。前台 放的是分時互動作業。後台 放的批處理作業。當前臺 調入調出 時cpu空閒,這時呼叫後台批處理作業。即前台作業的優先順序高於後台作業。多道分時系統 記憶體...