エミュレータで作業していますが、HTC Sense を試しているときに、このコードの最後の行で例外が発生しました
url = new URL(urlString);
connection = (HttpURLConnection)url.openConnection();
connection.setRequestMethod("POST");
connection.setRequestProperty("Content-Type",
"application/json; charset=utf-8");
//Send request
Gson requestGson = new Gson();
OutputStream wr = connection.getOutputStream();
例外は java.net.ProtocolException: Does not support output for the connection.getOutputStream(); です。
API 10、HTC Sense (リモート デバッグ) で Gingerbread をテストしています。
誰もこの問題に遭遇したことがありますか?
ありがとう。デビッド。