android – 错误HTTP1.0 405不允许的方法

android – 错误HTTP1.0 405不允许的方法,第1张

概述我想做一个Htttp连接这是我的代码 try{HttpClient client = new DefaultHttpClient();HttpPost httpMethod = new HttpPost("http://www.google.co.in/");String requestBody = "some text";HttpMethod.setEntity(new StringE 我想做一个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 – 错误HTTP / 1.0 405不允许的方法全部内容,希望文章能够帮你解决android – 错误HTTP / 1.0 405不允许的方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1131550.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存