0

我有一个发送 HTTP POST 的简单程序。

在线路httpost.addheader("Content-Length","18")存在时才有效。否则失败。在代码中,它是带有“--->”的
行,注释掉这一行会使 POST 成功。

如果该行在代码中,Android 不会发送 POST 并返回协议异常错误。我使用 Wireshark 验证没有发送任何内容。

任何想法为什么设置 Content-Length 会产生异常?

编码:

HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://test.com/a_post.php");

try {
    List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
    // DATA
    nameValuePairs.add(new BasicNameValuePair("mydata", "abcde"));
    nameValuePairs.add(new BasicNameValuePair("id","29"));

    StringEntity se = new UrlEncodedFormEntity(nameValuePairs);
    httppost.setEntity(se);

    int seLength = (int) se.getContentLength();
    String seLengthStr = Integer.toString(seLength);

    httppost.addHeader("Content-Type","application/x-www-form-urlencoded");
    ----> httppost.addHeader("Content-Length", "18");

    ResponseHandler<String> responseHandler = new BasicResponseHandler();
    String httpResponse=httpclient.execute(httppost, responseHandler);

    responseV.setText(responseV.getText()+ " " + httpResponse);
} catch (ClientProtocolException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
} catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}
4

2 回答 2

1

你确定内容长度正好是 18 吗?我的猜测是,如果代码意识到设置的内容长度不正确,则请求不会完成,因为发送具有无效内容长度的请求将(至少应该)导致服务器出错。

如果您省略内容长度,很可能会在需要时自动添加。

于 2010-09-29T19:08:20.567 回答
0

在许多情况下,HTTP 客户端和服务器不得发送Content-Length标头。它通常不是必需的,包括连接的另一端是否支持 HTTP/1.1。最好简单地忽略该标头,让您的 HTTP 客户端/服务器库处理是否添加标头的逻辑。

于 2010-09-29T20:34:54.457 回答