1. 程式人生 > >httpclient post方式服務端獲取不到資料的解決辦法

httpclient post方式服務端獲取不到資料的解決辦法

最近做專案時,發現手機客戶端通過http協議post方式上傳資料到服務端,在伺服器端通過request.getInputStream()能獲取到相應的資料,但用request.getParameter()卻獲取不到資料。這是怎麼回事呢,後來發現這種情況跟form表單的屬性 enctype有關係。

HTML中的form表單有一個關鍵屬性 enctype=application/x-www-form-urlencoded 或multipart/form-data。

1、enctype="application/x-www-form-urlencoded"是預設的編碼方式,當以這種方式提交資料時,HTTP報文中的內容是:

<span style="font-size:12px;">POST /post_test.php HTTP/1.1 
Accept-Language: zh-CN
User-Agent: Mozilla/4.0 
Content-Type: application/x-www-form-urlencoded 
Host: 192.168.12.102
Content-Length: 42
Connection: Keep-Alive
Cache-Control: no-cache
 
title=test&content=%B3%AC%BC%B6%C5%AE%C9%FA&submit=post+article 
</span>

Servlet的API提供了對這種編碼方式解碼的支援,只需要呼叫ServletRequest 類中的getParameter()方法就可以得到表單中提交的資料。


2、在傳輸大資料量的二進位制資料時,必須將編碼方式設定成enctype="multipart/form-data",當以這種方式提交資料時,HTTP報文中的內容是:

<span style="font-size:12px;">POST /post_test.php?t=1 HTTP/1.1
Accept-Language: zh-CN
User-Agent: Mozilla/4.0  
Content-Type: multipart/form-data; boundary=---------------------------7dbf514701e8
Accept-Encoding: gzip, deflate
Host: 192.168.12.102
Content-Length: 345
Connection: Keep-Alive
Cache-Control: no-cache
 
-----------------------------7dbf514701e8
Content-Disposition: form-data; name="title"
test
-----------------------------7dbf514701e8
Content-Disposition: form-data; name="content"
....
-----------------------------7dbf514701e8
Content-Disposition: form-data; name="submit"
post article
-----------------------------7dbf514701e8--</span>

如果以這種方式提交資料就要用request.getInputStream()或request.getReader()來獲取提交的資料 request.getParameter()是獲取不到提交的資料的。

最後注意request.getParameter()、request.getInputStream()、request.getReader()這三種方法是有衝突的,因為流只能被讀一次。
比如: 
當form表單內容採用enctype=application/x-www-form-urlencoded編碼時,先通過呼叫request.getParameter()方法獲取資料後,再呼叫request.getInputStream()或request.getReader()已經獲取不到流中的內容了,因為在呼叫request.getParameter()時系統可能對錶單中提交的資料以流的形式讀了一次,反之亦然。

當form表單內容採用enctype=multipart/form-data編碼時,呼叫request.getParameter()獲取不到資料,即使已經呼叫了request.getParameter()方法也可以再通過呼叫request.getInputStream()或request.getReader()獲取表單中的資料,但request.getInputStream()和request.getReader()在同一個響應中是不能混合使用的,如果混合使用會拋異常的。