有人可以帮助我提供一些关于如何在 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 生成上述字符串。
谢谢