Request相關內容

2021-10-07 15:00:23 字數 1052 閱讀 8350

1. request物件和response物件的原理

2. requset功能

string getmethod()
string getcontextpath()
string getservletpath()
string getrequesturi()

獲取請求頭資料:通過請求頭的名稱獲取請求頭的值

string getheader(string name)

其他功能

string getparameter(string name):
根據引數的名稱獲取引數值的陣列
request.setcharacterencoding("utf-8");

請求**

requestdispatcher requestdispatcher = context.getrequestdispatcher("/gp"); //**的請求路徑

requestdispatcher.forward(request,response); //呼叫forward實現請求**;

context.getrequestdispatcher("/gp").forward(request,response);

共享資料

void setattribute(string name,object obj):儲存資料
object getattitude(string name):通過鍵獲取值
void removeattribute(string name):通過鍵移除鍵值對
servletcontext getservletcontext()

ORACLE相關內容

1 em,dbca,netca,netmgr出現亂碼方案 cd oracle home jre lib mv font.properties font.properties.bak mv font.properties.zh font.properties em,dbca,netca,netmgr詳...

JVM相關內容

本地 native code 每個因素對記憶體占用的影響又會隨著應用程式 執行環境和系統平台的不同而變化,那怎樣計算總的記憶體佔用量?是的,想得到乙個準確的數字不是那麼容易,因為 你很難控制本地 native 部分。你能控制的部分只有堆大小 xmx,類占用的記憶體 xx maxpermsize,還有...

指標相關內容

1.指標是變數,佔4位元組,存放的是位址 2.指標型別與零值比較 if n null 或者if n null 3.野指標 int p 空指標 int p null 避免野指標 以char型別為例 char p char mallloc sizeof char 10 要包含標頭檔案 include 使...