1. 程式人生 > >自定義Json格式

自定義Json格式

自定義格式 for logs blog col bject spa del .get

老鐵們都知道,一般的json格式就是鍵值對格式,在一些特定的框架或者系統中,會用到自定義格式的json文件,假設我們要得到的特定格式json格式如下:

{"A":"2","B":20,"C":"38","D":[{"E":"232","cell":["a","b","c","d"]},{"E":"235","cell":["a1","b1","c1","d1"]}]}

那麽代碼就可以如下寫法:

public static JSONObject List2Json(List list) {
               
        JSONObject json = new JSONObject();
        json.put(
"A", "2"); prologjson.put("B", 20); prologjson.put("C", "38"); for(int i = 0; i < 某條件; i++){ JSONObject tempobj = new JSONObject(); tempobj.put("E", list.get(i).getA()); tempobj.accumulate("cell", list.get(i).getA); tempobj.accumulate(
"cell", list.get(i).getB); tempobj.accumulate("cell", list.get(i).getC); tempobj.accumulate("cell", list.get(i).getD)); prologjson.accumulate("rows", tempobj); } return prologjson; }

ps:以上的代碼是偽代碼,復制粘貼是運行不了的哦。

自定義Json格式