首先引入jar包: <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.83</version> </dependency> JSON相关:1.json转对象 Student o = JSONObject.parseObject(jsonString, Student.class); 2.json转List List<Student> stu...