android – 错误HTTP / 1.0 405不允许的方法

前端之家收集整理的这篇文章主要介绍了android – 错误HTTP / 1.0 405不允许的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想做一个Htttp连接这是我的代码
try
{
HttpClient client = new DefaultHttpClient();
HttpPost httpMethod = new HttpPost("http://www.google.co.in/");
String requestBody = "some text";
HttpMethod.setEntity(new StringEntity(requestBody));
HttpResponse response = client.execute(httpMethod);
textView.setText(response.getStatusLine().toString());
}

但是我无法获得“HTTP / 1.0 405方法不允许”错误
我会感谢你的帮助

解决方法

这意味着请求的URL不接受POST方法.再试一次GET.

猜你在找的Android相关文章