zoukankan      html  css  js  c++  java
  • fastjson解析任意json

    fastjson解析任意json到bean

    解析案例的代码
    package com.base.config;
    
    import java.util.List;
    
    import com.alibaba.fastjson.JSONArray;
    import com.alibaba.fastjson.JSONObject;
    
    public class JsonParse {
        
        public static void main(String[] args) {
            
            String arrJson = "[{"id":1,"mobile":15809619172},{"id":2,"mobile":14588827746}]";
            List<Student> stus = JSONArray.parseArray(arrJson, Student.class);
            
            System.out.println("array json的解析结果:");
            
            for (Student stu : stus) {
                System.out.println(stu);
            }
            
            String beanJson = "{"id":1,"mobile":15809619172}";
            Student stu = JSONObject.parseObject(beanJson, Student.class);
            System.out.println("beanjson的解析结果:");
            System.out.println(stu);
            
        }
    
    }
    Student的代码
    package com.base.config;
    
    public class Student {
        private int id;
        private String mobile;
    
        public int getId() {
            return id;
        }
        public void setId(int id) {
            this.id = id;
        }
        public String getMobile() {
            return mobile;
        }
        public void setMobile(String mobile) {
            this.mobile = mobile;
        }
        
        @Override
        public String toString() {
            return "Student [id=" + id + ", mobile=" + mobile + "]";
        }
    
    }
    程序运行结果
    array json的解析结果:
    Student [id=1, mobile=15809619172]
    Student [id=2, mobile=14588827746]
    beanjson的解析结果:
    Student [id=1, mobile=15809619172]

    这样解析效率很高,而且代码非常简单。比json-lib库要简化非常多。所以强烈推荐使用fastjson.

  • 相关阅读:
    NAS与SAN RAID
    使用slice和concat对数组的深拷贝和浅拷贝
    使用JSON.parse(),JSON.stringify()实现对对象的深拷贝
    ng2父子模块通信@ViewChild和@Inject
    js避免命名冲突
    JSON.parse()和JSON.stringify()
    object类型转换为Array类型
    Angular 2 ViewChild & ViewChildren
    ElementRef, @ViewChild & Renderer
    ng2父子模块数据交互
  • 原文地址:https://www.cnblogs.com/sfmjp/p/5742139.html
Copyright © 2011-2022 走看看