ここでドキュメントを見ています:http://docs.oracle.com/javase/7/docs/api/java/net/URLConnection.html
リクエストにPOSTメソッドとしてフラグを立てるオプションが表示されません。何か見たいと思い.setRequestMethod("POST");
ます。間違ったドキュメントを見ていますか?
私はAndroid4.2とJava1.6を使用しています。javase/1.4.2
それが私が探しているべきものであるかどうかはわかりませんが。
URL url = new URL(this.getUrl());
URLConnection connection = url.openConnection();
connection.setDoOutput(true);
connection.setDoInput(true);
connection.setRequestMethod("POST");
connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
connection.setRequestProperty("charset", "utf-8");
connection.setRequestProperty("Content-Length", "" + Integer.toString(urlParameters.getBytes().length));
connection.setUseCaches (false);