0

我正在向发送 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();
        }
    }
4

1 回答 1

4

删除.replace("\"", "\\\"")指令。这是不必要的。

当您发送 JSON 字符串文字时,您必须在双引号之前添加斜杠,因为在 Java 字符串文字中,必须转义双引号(否则,它们将标记字符串的结尾而不是字符串中的双引号) .

但是字节码中的实际字符串不包含这些反斜杠。它们仅在源代码中使用。

于 2013-04-08T14:59:05.693 回答