美文网首页
Fast Json 笔

Fast Json 笔

作者: Demon鑫 | 来源:发表于2017-01-22 13:02 被阅读0次
    0. Jar 包

    下载地址

    1.Json → 对象
    Bean bean = JSON.parseObject(jsonString, Bean.class);
    
    2.对象 → Json
    String jsonString = JSON.toJSONString(bean);
    
    3.Json → Map
    Map<String, Object> jsonMap = JSON.parseObject(jsonString, new TypeReference<Map<String, Object>>() {});
    
    4.Json → List
    List<Bean> jsonList = JSON.parseArray(jsonString, Bean.class);
    

    2017/1/22 13:02:27

    相关文章

      网友评论

          本文标题:Fast Json 笔

          本文链接:https://www.haomeiwen.com/subject/qpqobttx.html