其他分享
首页 > 其他分享> > JSON转换相关

JSON转换相关

作者:互联网

  对象转json

1. JSONObject jsonObject1 = (JSONObject)JSONObject.toJSON(iotDeviceOnline.getData());  //fastjson 对象转json

2.   net.sf.json.JSONObject jsonObject2 = net.sf.json.JSONObject.fromObject(iotDeviceProperties.getData());// 对象转json

      jsonObject转list集合

1. List<DeviceInfoWifi> deviceInfoWifis = JSONObject.parseArray(jsonObject2.toString(), DeviceInfoWifi.class);// json转list

标签:转换,JSONObject,list,json,jsonObject2,JSON,相关,net,getData
来源: https://www.cnblogs.com/liberalartsy/p/15214965.html