首页 前端知识 Json把String转对象、转list。把对象转json

Json把String转对象、转list。把对象转json

2024-04-29 11:04:06 前端知识 前端哥 917 554 我要收藏

Json把String转对象、转list。把对象转json

1,Json把String转对象

  public Object test(String jsonStr){
		JSONArray jsonArray = JSON.parseArray(jsonStr);
		StudentVo studentVo = (StudentVo) JSONObject.parseArray(jsonArray.toJSONString(), StudentVo.class);
   return models; 
 }

2,Json把String转List

  public Object test(@RequestBody Map<String, Object> map){
      String json1 = JSON.toJSONString(models.get("regionInfos"));
        // 转json,这里接收的每个同类型对象都有多个,所以是个集合,需要转json
        List<RegionInfo> znjsRegionInfos = JSON.parseArray(json1, RegionInfo.class);
   return models; 
 }

3,对象转JSON

String jsonObjectStr = JSONObject.toJSONString(studentList);String jsonObjectStr = JSON.toJSONString(studentList);
转载请注明出处或者链接地址:https://www.qianduange.cn//article/6044.html
标签
评论
发布的文章

qt JSON和字符串相互转换

2024-05-05 12:05:04

nlohmann::json从入门到精通

2024-05-05 12:05:00

Android-第十节JSON讲解

2024-05-05 12:05:35

FastJson 框架详解

2024-05-05 12:05:31

MySql操作JSON

2024-05-05 12:05:31

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!