Created
June 7, 2016 21:29
-
-
Save biodunalfet/d9e16762ab82d1756ecb8c8d4644d0c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this.datas = ToList(peopleAsString); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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