我想建立一个Http连接这是我的代码
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 Method not Allowed”错误 我将感谢你的帮助
答案 0 :(得分:19)
这意味着请求的URL不接受POST方法。再试一次GET。
答案 1 :(得分:3)
也许您应该尝试使用接受POST请求的服务器。您的代码可能没有任何问题,Google的首页就是不进行POST。
我能想到的服务器的一个简单示例是JSFiddle's echo feature。我相信他们不介意。