json转实体类

Student student = JSONObject.parseObject(jsonString, Student.class);

json转为实体类List

List<Student> StudentList= JSONObject.parseArray(jsonString, Student.class);