Skip to content

Instantly share code, notes, and snippets.

@biodunalfet
Created June 7, 2016 21:29
Show Gist options
  • Save biodunalfet/d9e16762ab82d1756ecb8c8d4644d0c0 to your computer and use it in GitHub Desktop.
Save biodunalfet/d9e16762ab82d1756ecb8c8d4644d0c0 to your computer and use it in GitHub Desktop.
this.datas = ToList(peopleAsString);
public List<Person> ToList(String dataAsJSON){
Gson gson = new Gson();
Type listType = new TypeToken<List<Person>>(){}.getType();
return gson.fromJson(dataAsJSON, listType);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment