Android HttpResponse响应代码

时间:2011-11-16 08:36:34

标签: android http

我正在尝试获取HttpResponse的响应代码。没有直接获取响应代码的方法。

3 个答案:

答案 0 :(得分:20)

答案 1 :(得分:2)

请找到Android: How get the status-code of an HttpClient request

链接

希望它会对你有帮助。

此致

Android Geek。

答案 2 :(得分:2)

如果您使用HttpUrlConnection

,这就是获取响应代码的方法
int status = ((HttpURLConnection) connection).getResponseCode();
Log.i("", "Status : " + status);

如果你使用的是HttpClient

HttpResponse response = httpclient.execute(httppost);
Log.w("Response ","Status line : "+ response.getStatusLine().toString());