Gson: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=External= * https://github.com/google/gson =Internal= * JSON")
 
Line 6: Line 6:


* [[JSON#Frameworks|JSON]]
* [[JSON#Frameworks|JSON]]
=Overview=
<syntaxhighlight lang='java'>
import com.google.gson.Gson;
...
Gson gson = new Gson();
Object deserialized = son.fromJson("....", Object.class);
</syntaxhighlight>

Revision as of 19:21, 11 June 2018

External

Internal

Overview

import com.google.gson.Gson;

...

Gson gson = new Gson();
Object deserialized = son.fromJson("....", Object.class);