我正在向发送 JSON 字符串的 HTTP 服务器发出请求。我使用 Gson 序列化和反序列化 JSON 对象。今天我观察到这种非常奇怪的行为,我不明白。
我有:
String jsonAsString = gson.toJson(jsonAsObject).replace("\"", "\\\"");
System.out.println(jsonAsString);
这正是输出:
{\"content\":\"Literal\",\"pos\":{\"left\":20,\"top\":20}}
现在我正在使用OutputStreamWriter
从获取HttpURLConnection
到的 HTTP、PUT 请求和 JSON 有效负载。上述请求工作正常:
os.write("{\"content\":\"Literal\",\"pos\":{\"left\":20,\"top\":20}}");
然而,当我说:
os.write(jsonAsString);
...请求不起作用(此服务器不返回任何错误,但我可以看到,当将 JSON 编写为字符串对象时,它没有做它应该做的事情)。在字符串对象上使用字符串文字时是否有区别。难道我做错了什么?
这是片段:
public static void EditWidget(SurfaceWidget sw, String widgetId) {
Gson gson = new Gson();
String jsonWidget = gson.toJson(sw).replace("\"", "\\\"");
System.out.println(jsonWidget);
try {
HttpURLConnection hurl = getConnectionObject("PUT", "http://fltspc.itu.dk/widget/5162b1a0f835c1585e00009e/");
hurl.connect();
OutputStreamWriter os = new OutputStreamWriter(hurl.getOutputStream());
//os.write("{\"content\":\"Literal\",\"pos\":{\"left\":20,\"top\":20}}");
os.write(jsonWidget);
os.flush();
os.close();
System.out.println(hurl.getResponseCode());
} catch (IOException e) {
e.printStackTrace();
}
}