Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Using Gson
1
8
9
10
11
12
13
14
15
20
// {
User user = new User("Bob", 123);
String json = new Gson().toJson(user);
System.out.println(json);
// {
Enter to Rename, Shift+Enter to Preview
1
public class User {
Enter to Rename, Shift+Enter to Preview
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content