画像のバイト配列をこの Web サービスに投稿しようとしています。307 応答コードが返されます。
URL url = new URL("http://123.456.789:2020/UploadService/AddReportContent");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setDoInput(true);
connection.setDoOutput(true);
connection.setUseCaches(false);
connection.setRequestMethod("POST");
connection.setRequestProperty("Connection", "Keep-Alive");
connection.setRequestProperty("Content-Type", "application/octet-stream");
connection.setFixedLengthStreamingMode(b.length);
DataOutputStream out = new DataOutputStream(connection.getOutputStream());
out.write(b);
out.flush();
out.close();
status = connection.getResponseCode();
これを解決するのを手伝ってください。前もって感謝します。