自从更新到冰淇淋三明治后,我的 POST 请求不再起作用。在 ICS 之前,这可以正常工作:
try {
final URL url = new URL("http://example.com/api/user");
final HttpURLConnection connection = (HttpURLConnection) url
.openConnection();
connection.setRequestMethod("POST");
connection.setDoOutput(false);
connection.setDoInput(true);
connection.setRequestProperty("Content-Length", "0");
if (connection.getResponseCode() != HttpURLConnection.HTTP_OK) {
Log.w(RestUploader.class.getSimpleName(), ": response code: " + connection.getResponseMessage());
} else {
final BufferedReader reader = new BufferedReader(
new InputStreamReader(connection.getInputStream()));
final String line = reader.readLine();
reader.close();
return Long.parseLong(line);
}
} catch (final MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (final ProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (final IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return -1;
我试过设置
connection.setDoOutput(true);
但它不起作用。服务器响应始终是 405(不允许使用方法),服务器日志显示这是一个 GET 请求。
到 setRequestMethod 的 Android JavaDoc 说:
此方法只能在建立连接之前调用。
是不是说方法必须在url.openConnection()之前调用?我应该如何创建一个 HttpURLConnection 实例?我见过的所有例子,都按照上面的描述。
我希望有人知道为什么它总是发送 GET 请求而不是 POST。
提前致谢。