1. ホーム
  2. java

[解決済み] JSONでHttp 415 Unsupported Media typeエラーが発生した。

2022-03-06 14:33:16

質問

JSONリクエストでRESTサービスを呼び出しているのですが、レスポンスに HTTP 415 "Unsupported Media Type" というエラーが発生します。

リクエストのコンテンツタイプに ("Content-Type", "application/json; charset=utf8") .

リクエストにJSONオブジェクトを含めない場合は、問題なく動作します。私が使用しているのは google-gson-2.2.4 ライブラリでJSONに対応しています。

いくつかの異なるライブラリを使用してみましたが、違いはありませんでした。

どなたか、この問題を解決する方法を教えてください。

以下は私のコードです。

public static void main(String[] args) throws Exception
{

    JsonObject requestJson = new JsonObject();
    String url = "xxx";

    //method call for generating json

    requestJson = generateJSON();
    URL myurl = new URL(url);
    HttpURLConnection con = (HttpURLConnection)myurl.openConnection();
    con.setDoOutput(true);
    con.setDoInput(true);

    con.setRequestProperty("Content-Type", "application/json; charset=utf8");
    con.setRequestProperty("Accept", "application/json");
    con.setRequestProperty("Method", "POST");
    OutputStream os = con.getOutputStream();
    os.write(requestJson.toString().getBytes("UTF-8"));
    os.close();


    StringBuilder sb = new StringBuilder();  
    int HttpResult =con.getResponseCode();
    if(HttpResult ==HttpURLConnection.HTTP_OK){
    BufferedReader br = new BufferedReader(new   InputStreamReader(con.getInputStream(),"utf-8"));  

        String line = null;
        while ((line = br.readLine()) != null) {  
        sb.append(line + "\n");  
        }
         br.close(); 
         System.out.println(""+sb.toString());  

    }else{
        System.out.println(con.getResponseCode());
        System.out.println(con.getResponseMessage());  
    }  

}
public static JsonObject generateJSON () throws MalformedURLException

{
   String s = "http://www.example.com";
        s.replaceAll("/", "\\/");
    JsonObject reqparam=new JsonObject();
    reqparam.addProperty("type", "arl");
    reqparam.addProperty("action", "remove");
    reqparam.addProperty("domain", "staging");
    reqparam.addProperty("objects", s);
    return reqparam;

}
}

の値は requestJson.toString() は :

{"type":"arl","action":"remove","domain":"staging","objects":"http://www.example.com"}

解決方法は?

理由は不明だが、行を削除する charset=utf8 から con.setRequestProperty("Content-Type", "application/json; charset=utf8") は問題を解決しました。