1. json 转为List:
下载Gson.jar包,导入到lib中
Gson gson=new Gson();
List<String> mList=gson.from(JsonObject object,new TypeToken<List<String>.getType()>);
2.List转为json格式:
String json=gson.toJson(List);
List<type> 与 json 相互转换
原文:http://www.cnblogs.com/zhaolins/p/5671964.html