记一次fastJson调错

前端之家收集整理的这篇文章主要介绍了记一次fastJson调错前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

项目需要将数据保存成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 ,模拟从库中取到的数据

原文链接:https://www.f2er.com/json/289100.html

猜你在找的Json相关文章