java - 带有 JSON 的 Http 415 不支持的媒体类型错误

标签 java json http-status-code-415

我正在使用 JSON 请求调用 REST 服务,它响应 HTTP 415 "Unsupported Media Type" 错误。

请求内容类型设置为("Content-Type", "application/json; charset=utf8")

如果我不在请求中包含 JSON 对象,它会正常工作。我正在使用 JSON 的 google-gson-2.2.4 库。

我尝试使用几个不同的库,但没有任何区别。

谁能帮我解决这个问题?

这是我的代码:

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"}

最佳答案

不确定原因,但从 con.setRequestProperty("Content-Type", "application/json; charset=utf8") 中删除行 charset=utf8 已解决问题。

关于java - 带有 JSON 的 Http 415 不支持的媒体类型错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22566433/

相关文章:

java线程阻塞

java - 陷入 java XPath 困境

Angular 12 typescript 上传文件错误415不支持的媒体类型

java - Spring MVC : JSON to Pojo conversion throwing HTTP 415 Error

android - Retrofit 图片上传返回 415 Unsupported Media Type

java - 性能: ArrayBlockingQueue vs manaul implementation with List

java - 使用 Gluon 获取设备信息的问题

ios - 检索给定特定字段的 Firebase 数据

使用 cxf JSONProvider 将 Java 转为 JSON

python - jsonrpc 的导入错误