JSON对象转java对象 JSON数组转LIST数组

        /**
         * json数组转List
         */
        List<Student> stus = (List<Student>)JSONArray.parseArray(array.toJSONString(), Student.class);
        /**
         * Json对象转java对象
         */
        Student stu = JSONObject.parseObject(array.get(0).toString(), Student.class);