0
有人可以幫助我解決一些關於如何使用android應用中的GSON谷歌庫來建立我的Json字符串的方法。如何爲WCF REST API生成提及的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生成上述字符串。
感謝