Skip to content

Instantly share code, notes, and snippets.

@litrik
Created July 15, 2013 09:24
Show Gist options
  • Save litrik/5998621 to your computer and use it in GitHub Desktop.
Save litrik/5998621 to your computer and use it in GitHub Desktop.
Object to/from JSON
Something s = (new GsonBuilder()).create().fromJson(someString, Something.class);
Soemthing something = new Something();
String str = new Gson().toJson(something);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment