HttpPost + setEntity:如何知道内容长度?

时间:2013-11-17 23:40:17

标签: android entity http-post content-length

我几乎设置了所有数据:

String capcha = editText.getText().toString();
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("myurl.asp");

// Add your data                    
String str = "param1=x&param2=y";
StringEntity strEntity = new StringEntity(str);
httppost.setEntity(strEntity);

httppost.setHeader("Set-Cookie", sessionCookie);
httppost.setHeader("Accept", "text/html");
httppost.setHeader("Content-Type", "application/x-www-form-urlencoded");
// httppost.setHeader("Content-Length", ); HOW TO GET CONTENT LENGTH ?

// Execute HTTP Post Request
HttpResponse response = httpclient.execute(httppost);

感谢您的帮助。

1 个答案:

答案 0 :(得分:4)

也许这可能有助于解决您的问题:

httppost.setHeader("Content-Length", String.valueOf(strEntity.getContentLength()));