fastjson 使用


title: fastjson 使用

首先导入fastjson的jar包。

  1. 解析json字符串
    public static void JsonStringToArray(String jsonstring){
        String[][] array ;
        try{
            List> listMap = JSON.parseObject(jsonstring, new TypeReference>>(){});
            System.out.println(listMap.size());
        }catch (Exception e){
            e.printStackTrace();
            System.out.println("解析出错!");
        }
    }

你可能感兴趣的:(fastjson 使用)