Open onecoders opened 10 years ago
Java Google Json Introduction http://www.studytrails.com/java/json/java-google-json-introduction.jsp
Use Gson to work with JSON in your Android apps http://www.techrepublic.com/blog/software-engineer/use-gson-to-work-with-json-in-your-android-apps/
GSON USER GUIDE https://sites.google.com/site/gson/gson-user-guide
JSON is a lightweight data interchange format
Type collectionType = new TypeToken<List<Entity>>() {
}.getType();
List<Entity> list = new Gson().fromJson(content, collectionType);
JSON FORMAT ONLINE http://www.kjson.com/
https://code.google.com/p/google-gson/