import com.alibaba.fastjson.JSONObject;
Object,List<Object>转JsonStr
String jsonString = JSONObject.toJSONString(object);
JsonStr转JSONObject
JSONObject jSONObject = JSONObject.parseObject(jsonStr);
JsonStr转Object
BeanName beanName = SONObject.parseObject(beanJsonStr, BeanName.class);
JsonStr转List<Object>
List<BeanName> parseArray = JSONObject.parseArray(beanJsonStr, BeanName.class);