Skip to content

Instantly share code, notes, and snippets.

@Reacoder
Created June 10, 2014 04:00
Show Gist options
  • Save Reacoder/5eccd0234dbd322a7f34 to your computer and use it in GitHub Desktop.
Save Reacoder/5eccd0234dbd322a7f34 to your computer and use it in GitHub Desktop.
Gson get string from arrayList.
Gson gson = new Gson();
String videosJson = gson.toJson(playingVideos,
new TypeToken<ArrayList<PlayingVideo>>() {
}.getType());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment