Wednesday, June 27, 2012

Convert Java Objects to / from JSON using Gson

No comments:
Here is the example code which will give you the overview of gson package com.file; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.lang.reflect.Type; import java.util.ArrayList; import java.util.Arrays; import java.util.Iterator; import java.util.List; import com.google.gson.Gson; import...
Read More