当前位置:   article > 正文

JSON与List的相互转化_hutool list转json

hutool list转json

1.依赖导入

  1. <!--hutool-->
  2. <dependency>
  3. <groupId>cn.hutool</groupId>
  4. <artifactId>hutool-all</artifactId>
  5. <version>5.7.17</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>com.alibaba</groupId>
  9. <artifactId>fastjson</artifactId>
  10. <version>1.2.66</version>
  11. </dependency>

2.List转化为JSON

  1. ArrayList<String> list= new ArrayList();
  2. String Json = JSONUtil.toJsonStr(list);
  3. stringRedisTemplate.opsForValue().set("list",Json );

3.JSON转换成List集合

  1. String s= stringRedisTemplate.opsForValue().get("key");
  2. List<类名> list = JSONObject.parseArray(s, 类名.class);

注:JSONObject采用fastjson工具包

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/366804
推荐阅读
相关标签
  

闽ICP备14008679号