15
HTTP 415 JSON不支持的媒体类型错误
我正在使用JSON请求调用REST服务,并且它会返回HTTP 415 "Unsupported Media Type"错误。 请求内容类型设置为("Content-Type", "application/json; charset=utf8")。 如果我在请求中不包含JSON对象,则效果很好。我正在使用google-gson-2.2.4JSON库。 我尝试使用几个不同的库,但这没什么区别。 有人可以帮我解决这个问题吗? 这是我的代码: 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; …