发布于 4年前
用fastjson进行 list,String,json之间相互传换
String转对象,对象便于操作
PieceBean pieceBean = gson.(result,PieceBean.);
String 转 JSON对象,对象便于操作
JSONObject = JSON.(pieceBean.getContent());
对象转String,便于数据的传输
JSON.toJSONString(map)
String转对象,对象便于操作
PieceBean pieceBean = gson.(result,PieceBean.);
String 转 JSON对象,对象便于操作
JSONObject = JSON.(pieceBean.getContent());
对象转String,便于数据的传输
JSON.toJSONString(map)