変換元:https://www.cnblogs.com/xiaohouzai/p/8972286.html
SerializeWriter:StringBufferに相当
JSOnArray:List相当
JSONObject:Map JSON逆シーケンス化に相当する真の配列はなく、本質タイプはすべてList
例えばリスト
List回転Json
List students = new ArrayList();
String str = JSON.toJSONString(students); // List回転json
Json回転リスト方法一
String json = ""; //取得したJsonデータ
List students = JSON.parseObject(json,new TypeReference<List>(){}); // Json転送リスト
Json回転リスト方法2
List students = JSON.parseArray(json,Student.class);
StudentオブジェクトSerializableインタフェースを実装するには
import java.io.Serializable;
public class Student implements Serializable{大物の文章を参考にして詰めます:https://www.tuicool.com/articles/zUbQfa