Android 连接服务器时出现错误消息的方法

发布于 2024-11-07 05:11:05 字数 224 浏览 0 评论 0原文

我使用GET方法连接到服务器,服务器响应http状态代码403。 当我将 GET 方法的 url 粘贴到浏览器时,我收到“一些文本”和 http 状态代码 403。但是当我通过 Java(Android) 的 HttpURLConnection 向服务器发送具有相同 url 的 GET 请求时,我'我刚刚收到http状态代码403,响应文本为空。 所以任何人都可以告诉我如何在服务器返回代码 403 时获取“某些文本”。 提前致谢。

I use GET method to connect to the server, and the server responses http status code 403.
When I paste the url of my GET method to browser, I'm received "some text" and http status code 403. But when I send a GET request with the same url to the server by HttpURLConnection of Java(Android), I'm just received http status code 403, and response text is null.
So anyone can tell me how to get the "some text" when server return code 403.
Thanks in advance.

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

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

发布评论

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

评论(2

风尘浪孓 2024-11-14 05:11:05

只需按照 Zoombie 所写并添加行:

String reasonPhrase = httpResponse.getStatusLine().getReasonPhrase();

如果不起作用,则您的服务器未设置原因。然后,您应该将代码映射到标准原因短语:

HTTP 状态代码列表

Just do as Zoombie wrote and add line:

String reasonPhrase = httpResponse.getStatusLine().getReasonPhrase();

If it doesn't work, your server doesn't set the reason. Then you should map codes to standard reason phrases:

List of HTTP status codes

梦一生花开无言 2024-11-14 05:11:05

尝试使用 DefaultHttpClient 类,

client = new DefaultHttpClient(httpParameters);

                httpResponse = client.execute(request);
                responseCode = httpResponse.getStatusLine().getStatusCode();

                HttpEntity entity = httpResponse.getEntity();

                if (entity != null) {

                    InputStream instream = entity.getContent();
                    response = convertStreamToString(instream);
                    instream.close();
                }

Try to use DefaultHttpClient class,

client = new DefaultHttpClient(httpParameters);

                httpResponse = client.execute(request);
                responseCode = httpResponse.getStatusLine().getStatusCode();

                HttpEntity entity = httpResponse.getEntity();

                if (entity != null) {

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