Android:如何获取 HttpClient 请求的状态代码

发布于 2024-08-27 23:51:37 字数 299 浏览 8 评论 0原文

我想下载一个文件,需要检查响应状态代码(即HTTP /1.1 200 OK)。 这是我的代码的片段:

HttpGet httpRequest = new HttpGet(myUri);
HttpEntity httpEntity = null;
HttpClient httpclient = new DefaultHttpClient();
HttpResponse response = httpclient.execute(httpRequest);
...

如何获取响应的状态代码?

I want to download a file and need to check the response status code (ie HTTP /1.1 200 OK).
This is a snipped of my code:

HttpGet httpRequest = new HttpGet(myUri);
HttpEntity httpEntity = null;
HttpClient httpclient = new DefaultHttpClient();
HttpResponse response = httpclient.execute(httpRequest);
...

How do i get the status-code of the response?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

许仙没带伞 2024-09-03 23:51:37

这将返回 int 值:

response.getStatusLine().getStatusCode()

This will return the int value:

response.getStatusLine().getStatusCode()
空袭的梦i 2024-09-03 23:51:37
if (response.getStatusLine().getStatusCode()== HttpsURLConnection.HTTP_OK){
...
}
if (response.getStatusLine().getStatusCode()== HttpsURLConnection.HTTP_OK){
...
}
指尖凝香 2024-09-03 23:51:37

使用response的code()函数来获取它的HTTP代码:

val code = response.code()

Use code() function of response to get its HTTP code:

val code = response.code()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文