Is there any way to convert Java object to JSON file ( I have array of objects and I want to export to JSON file, properties ) >
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Sure there is, I suggest you to try Google's API which provides a good boxed way to serialize/deserialize data from java objects to JSON and vice-versa. |
|||
|
|
|
You can use the JsonParser to convert the Java object to JSON string and you just write that string to a file. |
|||
|
|
|
You can have the related answers here. Go through it. |
|||
|
|