我正在尝试通过 JAVA 生成和发送 JSON 文件,当我尝试使用数组添加嵌套对象以适应应用程序的协议(这对问题并不重要)时,java 程序无法发送文件,因为一个 HTTP 错误,代码 415(不支持的媒体类型),这很奇怪,因为当我将生成的 JSON 复制到目标应用程序(Google 的 DialogFlow)中时它可以工作。换句话说,JSON 是有效的,但 JAVA(1.8 版)无法识别它。有谁知道为什么会发生这种情况?
当 JSONArray 中的部分未包含在 JSON 文件中时,请求发送没有问题(请参见下面的代码)。我尝试将内容类型从“application/json;charset=utf8”更改为“application/json;charset=utf-8”或“application/json”但没有任何效果(这部分未包含在代码中,因为导致 JSON 不起作用的更改在下面的块中)。
部分不工作:
static JSONObject messageToJSON()
{
JSONObject requestJson = new JSONObject();
JSONObject meta= new JSONObject();
JSONObject payload= new JSONObject();
JSONArray arrayJson = new JSONArray();
String messageData="My Message";
try
{
requestJson.put("message", messageData);
requestJson.put("messageType", "html");
payload.put("title", "Thanks");
payload.put("message", "Thank you");
arrayJson.put(payload);
meta.put("contentType", "300");
meta.put("templateId", "6");
meta.put("contentType", "300");
meta.put("payload", arrayJson);
requestJson.put("metadata", meta);
System.out.println(requestJson.toString());
}
catch (JSONException e)
{
e.printStackTrace();
}
return requestJson;
}
工作部分(没有 JSON 中的额外层,例如有效负载 JSON 对象和 arrayJson JSON 数组):
static JSONObject messageToJSON()
{
JSONObject requestJson = new JSONObject();
JSONObject meta= new JSONObject();
JSONObject payload= new JSONObject();
JSONArray arrayJson = new JSONArray();
String messageData="My Message";
try
{
requestJson.put("message", messageData);
requestJson.put("messageType", "html");
meta.put("contentType", "300");
meta.put("templateId", "6");
meta.put("contentType", "300");
requestJson.put("metadata", meta);
System.out.println(requestJson.toString());
}
catch (JSONException e)
{
e.printStackTrace();
}
return requestJson;
}