json和gson的區別

來源:互聯網
上載者:User

標籤:ati   對象   str   pre   傳輸   on()   use   parse   ash   

json是一種資料格式,便於資料轉送、儲存、交換
gson是一種組件庫,可以把java對象資料轉換成json資料格式
GSON簡單處理JSONjson格式經常需要用到,google提供了一個處理json的項目:GSON,能很方便的處理轉換java對象和JSON表達。他不需要使用annotation,也不需要對象的原始碼就能使用。
以字串為例介紹:
1 。構造json 字串
 例如要傳送json格式的字串
       String appID = req.getParameter("appID");
       String userID  = req.getParameter("userID");
       Map map = new HashMap();
       map.put("appID", appID);
       map.put("userID", userID);
       Gson gson = new Gson();
       String state = gson.toJson(map);2.解析json字串
         JsonParser jsonparer = new JsonParser();//初始化解析json格式的對象
         String state = req.getParameter("state");
         String appID = jsonparer.parse(state).getAsJsonObject().get("appID").getAsString();
         String userID = jsonparer.parse(state).getAsJsonObject().get("userID").getAsString(); from: http://hanxiaoya.blog.51cto.com/7201018/1352437

json和gson的區別

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.