项目需要将数据保存成json 再解析,于是有了下面的正确方法
@Test
public void testJsonArray()
{
JSONObject json = new JSONObject();
List<TT> list = new ArrayList<TT>();
TT t = new TT();
t.setStation("武汉");
t.setTimes(2);
list.add(t);
t = new TT();
t.setStation("包头");
t.setTimes(20);
list.add(t);
json.put("data",list);
try
{
String jjstr = json.toJSONString();
JSONObject tempJson = JSONObject.parSEObject(jjstr);
System.out.println(jjstr);
String temp = tempJson.get("data").toString();
System.out.println(temp);
List<TT> l = JSONArray.parseArray(temp,TT.class);
System.out.println(l);
}
catch (Exception e)
{
System.out.println("error first");
}
}
注意中间 的jjstr 为一个中转String,如果不需要这个,如下面的错误范例,
@Test
public void testJsonArray()
{
JSONObject json = new JSONObject();
List<TT> list = new ArrayList<TT>();
TT t = new TT();
t.setStation("武汉");
t.setTimes(2);
list.add(t);
t = new TT();
t.setStation("包头");
t.setTimes(20);
list.add(t);
json.put("data",list);
try
{
String temp = json.get("data").toString();
System.out.println(temp);
List<TT> l = JSONArray.parseArray(temp,TT.class);
System.out.println(l);
}
catch (Exception e)
{
System.out.println("error first");
}
}
会报一个很奇怪的错误,尝试了很多办法,最后才想到把他搞个中间String ,模拟从库中取到的数据