JSON 转换
Posted 二零一七
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSON 转换相关的知识,希望对你有一定的参考价值。
<!-- porm.xml 文件 引用JAR包 -->
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.31</version>
</dependency>
//获取JSON字符串
String strResult = examXiaoiStudentRep.getExamQuestionList();
//声明LIST实体
List<ExamListInVO> list = new ArrayList<ExamListInVO>();
//转换为LIST 实体类
list = JSONObject.parseArray(strResult, ExamListInVO.class);
以上是关于JSON 转换的主要内容,如果未能解决你的问题,请参考以下文章