http設定header

johnchou發表於2021-09-09

1、httpPost 設定header,header內容是在傳送請求的標頭檔案裡面

HttpPost httpPost = new HttpPost(url);如:Accept    text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8Accept-Encoding    gzip, deflateAccept-Language    zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3

2、StringEntity 設定header,header內容是在傳送的內容裡面

StringEntity stringEntity = new StringEntity(data, ToolString.encoding);如:<!DOCTYPE html><html id="spLianghui"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

3、HttpResponse 設定header,header內容是在獲取返回資訊的標頭檔案裡面

HttpResponse response = httpClient.execute(httpPost);

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4422/viewspace-2817560/,如需轉載,請註明出處,否則將追究法律責任。

相關文章