onecoders / Knowledge

Accumulation
0 stars 2 forks source link

Google GSON #63

Open onecoders opened 10 years ago

onecoders commented 10 years ago

https://code.google.com/p/google-gson/

onecoders commented 10 years ago

Java Google Json Introduction http://www.studytrails.com/java/json/java-google-json-introduction.jsp

onecoders commented 10 years ago

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/

onecoders commented 10 years ago

GSON USER GUIDE https://sites.google.com/site/gson/gson-user-guide

onecoders commented 10 years ago

JSON is a lightweight data interchange format

onecoders commented 10 years ago
  Type collectionType = new TypeToken<List<Entity>>() {
  }.getType();
  List<Entity> list = new Gson().fromJson(content, collectionType);
onecoders commented 10 years ago

JSON FORMAT ONLINE http://www.kjson.com/