JacksonJson 处理Json与对象之间的转换

又学到一种新的解析Json ,并且很容易与对象之间互转的工具类,记录备用。
首先记录两个查maven pom 的网站,比较好用:
http://search.maven.org/#search%7Cga%7C1%7Cmybatis
http://mvnrepository.com/

实体类
package jsonTest;

import java.util.Date;

import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonProperty;

public class Student {
    // @JsonIgnore 此注解用于属性上,作用是进行JSON操作时忽略该属性。
    // @JsonFormat 此注解用于属性上,作用是把Date类型直接转化为想要的格式,如@JsonFormat(pattern =
    // "yyyy-MM-dd HH-mm-ss")。
    // @JsonProperty
    // 此注解用于属性上,作用是把该属性的名称序列化为另外一个名称,如把trueName属性序列化为name,@JsonProperty("name")
   @JsonProperty("number")
    private String id;
    private String name;
    private String age;
    private String sex;
    @JsonFormat(pattern ="yyyy年MM月dd日")
    private Date birth;
    public Date getBirth() {
        return birth;
    }

    public void setBirth(Date birth) {
        this.birth = birth;
    }

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getAge() {
        return age;
    }

    public void setAge(String age) {
        this.age = age;
    }

    public String getSex() {
        return sex;
    }

    public void setSex(String sex) {
        this.sex = sex;
    }

}
测试调用类
package jsonTest;
import java.io.IOException;
import java.text.ParseException;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;

import com.fasterxml.jackson.databind.ObjectMapper;

public class jacksonJson {

        public static void main(String[] args) throws ParseException, IOException {  

            /** 
             * ObjectMapper是JSON操作的核心,Jackson的所有JSON操作都是在ObjectMapper中实现。 
             * ObjectMapper有多个JSON序列化的方法,可以把JSON字符串保存File、OutputStream等不同的介质中。 
             * writeValue(File arg0, Object arg1)把arg1转成json序列,并保存到arg0文件中。 
             * writeValue(OutputStream arg0, Object arg1)把arg1转成json序列,并保存到arg0输出流中。 
             * writeValueAsBytes(Object arg0)把arg0转成json序列,并把结果输出成字节数组。 
             * writeValueAsString(Object arg0)把arg0转成json序列,并把结果输出成字符串。 
             */  
            ObjectMapper mapper = new ObjectMapper();  


            System.out.println("***************单个对象转Json************************");
            Student student=new Student();
            student.setId("20123094");
            student.setAge("22");
            student.setName("Bin");
            student.setSex("男");
            Date date=new Date();
            student.setBirth(date);
            String studentJson=mapper.writeValueAsString(student);
            System.out.println("studentJson="+studentJson);
            System.out.println();
            System.out.println("***************多个对象转Json************************");
            List<Student> students=new ArrayList<Student>();
            students.add(student);
            students.add(student);
            students.add(student);
            String studentsJson=mapper.writeValueAsString(students);
            System.out.println("studentsJson="+studentsJson);
            System.out.println();
            System.out.println("***************json转对象************************");
            Student newStu=new Student();
            newStu=mapper.readValue(studentJson, Student.class);
            System.out.println("json转换后结果如下:");
            System.out.println("newStu.getName()="+newStu.getName()+"|newStu.getSex()="+newStu.getSex());


        }  

}
测试结果输出:
***************单个对象转Json************************
studentJson={"name":"Bin","age":"22","sex":"男","birth":"2016年09月02日","number":"20123094"}

***************多个对象转Json************************
studentsJson=[{"name":"Bin","age":"22","sex":"男","birth":"2016年09月02日","number":"20123094"},{"name":"Bin","age":"22","sex":"男","birth":"2016年09月02日","number":"20123094"},{"name":"Bin","age":"22","sex":"男","birth":"2016年09月02日","number":"20123094"}]

***************json转对象************************
json转换后结果如下:
newStu.getName()=Bin|newStu.getSex()=男
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值