码迷,mamicode.com
首页 > 编程语言 > 详细

fastjson转化复杂javabean

时间:2016-10-29 02:40:22      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:fastjson javabean

package json.fastjson;

import java.util.ArrayList;
import java.util.List;

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.serializer.SerializerFeature;

public class Fastjson2JavaBean {
    public static void main(String[] args) {
        Course math = new Course(1,"数学");
        Course english = new Course(2,"英语");
        List<Course> courseList = new ArrayList<Course>();
        courseList.add(math);
        courseList.add(english);
        
        Student student = new Student("zz", courseList);
        String json = JSONObject.toJSONString(student, SerializerFeature.WriteMapNullValue);
        System.out.println(json);
        
        
        Student s = JSON.parseObject(json, Student.class);
        System.out.println(s.getName());
        List<Course> list = s.getCourse();
        for(int i = 0; i < list.size(); i++){
            Course c = list.get(i);
            System.out.println(c.getId() + "--" + c.getName());
        }
        
    }
}

class Student{
    private String name;
    private List<Course> course;
    public Student(){
        
    }
    public Student(String name, List<Course> course){
        this.name = name;
        this.course = course;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public List<Course> getCourse() {
        return course;
    }
    public void setCourse(List<Course> course) {
        this.course = course;
    }
}
class Course{
    private int id;
    private String name;
    public Course(){
        
    }
    public Course(int id, String name){
        this.id = id;
        this.name = name;
    }
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
}

本文出自 “巧克力黑” 博客,请务必保留此出处http://10120275.blog.51cto.com/10110275/1866856

fastjson转化复杂javabean

标签:fastjson javabean

原文地址:http://10120275.blog.51cto.com/10110275/1866856

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!