How to create a JSON document using Java?

2020-07-23 04:19发布

I want to read data from the database, convert it to docs (JSON) using Java.

Thanks

标签: java json
2条回答
地球回转人心会变
2楼-- · 2020-07-23 05:17

GSON is a Java library from Google to convert Java objects to JSON. You can simply pass a Java object to the library function and it will return a JSON string.

Download: http://code.google.com/p/google-gson/

Example: http://www.mkyong.com/java/how-do-convert-java-object-to-from-json-format-gson-api/

I have used the library from http://www.json.org, but the whole thing seems to be tedious to me. GSON is simple to use IMHO.

查看更多
太酷不给撩
3楼-- · 2020-07-23 05:22

I would use JSONObject class:

http://www.json.org/javadoc/org/json/JSONObject.html

or you can build the string.

查看更多
登录 后发表回答