Android 连接服务器时出现错误消息的方法
我使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需按照 Zoombie 所写并添加行:
如果不起作用,则您的服务器未设置原因。然后,您应该将代码映射到标准原因短语:
HTTP 状态代码列表
Just do as Zoombie wrote and add line:
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
尝试使用 DefaultHttpClient 类,
Try to use DefaultHttpClient class,