0

有人可以帮助我提供一些关于如何在 Android 应用程序中使用 GSON 谷歌库构建我的 Json 字符串的代码,如下所述。

我已经使用 JsonStringer 生成了下面提到的字符串,如下所述。

  JSONStringer stringer = new JSONStringer()
                    .object()
                    .key("loginRequest")
                    .object()
                    .key("UserId").value("007")
                    .key("Password").value("125987563")
                    .key("LicenseKey").value("My Project Key")
                    .key("MobileId").value("This is mobile id")
                    .endObject()
                    .endObject();

{"loginRequest":{"UserId":"007","Password":"125987563","LicenseKey":"This is License Key","MobileId":"This is mobile id"}}

请建议我如何使用 Gson 生成上述字符串。

谢谢

4

1 回答 1

0

它几乎完全相同:

final StringWriter sw = new StringWriter();
new JsonWriter(sw)
.beginObject()
.name("loginRequest")
.beginObject()
.name("userId").value("007")
.name("password").value("123")
.endObject()
.endObject()
.close();
于 2012-09-09T21:09:55.507 回答