一、用http寫服務類
30* 人員修改介面,當使用者修改資訊時,呼叫此介面,同步使用者資訊表
68 system.out.println("呼叫修改賬戶的介面,客戶請求引數result:"+result);
79if
(flag)else
8889
//返回值
90 printwriter out =response.getwriter();
91//
將物件轉為json格式的字串
314* 將json字串變為j**a物件
315*/
316public
message jsontomessage(string jsonstr)
327328 } catch
(nullpointerexception e)
331return
msg;
332}
333334
335//
判斷字串是否為空或者空字串
336public
static
boolean
isempty(string str)
341return
flag;
342}
343344 }
二、http請求類
50 system.out.println("原始資料:");
51system.out.println(strjson.tostring());
5253 mapmapst=tomap(strjson);
5455
for(string s : mapst.keyset())
5859 system.out.println("\n");
606162}
6364
/**65
* 將json物件轉換成map
66*
67*
@param
jsonobject
68* json物件
69*
@return
map物件
70*
@throws
jsonexception
71*/
72public
static maptomap(string jsonstring) throws
jsonexception
88return
result;
8990}91
92 }
HTTP請求與HTTP響應
http請求與http響應 一 http請求 http請求資訊又三部分組成 下面是乙個http請求的資料 1 請求行 以回車為結尾,以空格分隔。post 是請求方法。是url,http 1.1 是協議版本 http請求方法 get請求獲取由request uri所標識的資源 post 在reques...
HTTP請求與響應
乙個http請求一般由4部分組成 1.http請求的方法或動作,比如是get還是post請求 2.正在請求的url 3.請求頭,包含一些客戶端環境資訊,身份驗證資訊等等 4.請求體,也就是請求正文,請求正文中可以包含客戶提交的查詢字串資訊,表單資訊等等 注 一般請求頭和請求體之間空一行 get 一般...
HTTP請求與響應
1.客戶端和伺服器建立連線,客戶端發出請求,伺服器進行三次握手身份確認 2.伺服器接收到請求,linux核心根據 客戶端的請求 socket程序通訊管道發給http程序去解析 apache nginx 3.http伺服器開始處理請求,對使用者的請求報文進行解析,明確客戶端需要的資源和請求方式等等 4...