Android HttpResponse响应代码[重复]
Posted
技术标签:
【中文标题】Android HttpResponse响应代码[重复]【英文标题】:Android HttpResponse response Code [duplicate] 【发布时间】:2011-11-16 08:36:33 【问题描述】:我正在尝试获取 HttpReponse 的响应代码。没有直接获取响应码的方法。
【问题讨论】:
好问题,但已经问过了。 【参考方案1】:HttpResponse.getStatusLine().getStatusCode() 就是你要找的东西。
【讨论】:
【参考方案2】:请找到链接android: How get the status-code of an HttpClient request
希望对你有所帮助。
问候,
Android 极客。
【讨论】:
【参考方案3】:如果您使用HttpUrlConnection
,这就是您获取响应代码的方式:
int status = ((HttpURLConnection) connection).getResponseCode();
Log.i("", "Status : " + status);
如果您使用的是HttpClient
:
HttpResponse response = httpclient.execute(httppost);
Log.w("Response ","Status line : "+ response.getStatusLine().toString());
【讨论】:
以上是关于Android HttpResponse响应代码[重复]的主要内容,如果未能解决你的问题,请参考以下文章
Android从 HttpResponse (或者InputStream) 获取字符串内容的代码
PC 上的 Android 与 Java:不同的 HttpResponse?