码迷,mamicode.com
首页 > 编程语言 > 详细

java 向Redis中存放数据 List<Device>转String

时间:2020-03-18 15:32:59      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:service   类型   com   string类   ice   转换   add   size   device   

/**
* redis服务
*/
@Autowired
private RedisService redisService;

 

 

//创建 Device  对象

Device no = new Device();

//设置属性

no.setDeviceNo("Ubibot1");
no.setCompanyId(10);
no.setGroupId(1);

// 创建异常设备集合
List<Device> deviceError = new ArrayList<Device>();

//在集合中放入no 对象

deviceError.add(no);

//如果集合有值

if(deviceError.size() > 0) {

  // 异常设备的json数组,把list转换成json数组
  JSONArray jsonArray = JSONObject.parseArray(JSON.toJSONString(deviceError));

  //把json数组转换成String类型
  String json = jsonArray.toJSONString();

  // 将错误装置JSON数组放入redis中
  redisService.set(RedisKey.CULTIVATION_RECORD_ERROR, json);

}

 

java 向Redis中存放数据 List<Device>转String

标签:service   类型   com   string类   ice   转换   add   size   device   

原文地址:https://www.cnblogs.com/wangxue1314/p/12517427.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!