欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android中构建JSON数据(构建篇三:Gson构建)

程序员文章站 2024-01-31 10:48:34
...

第一步:创建一个实体类(JavaBean)

public class MyInfomation {

    String name;
    int age;
    String car;


    public String getName() {
        return name;
    }

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

    public int getAge() {
        return age;
    }

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

    public String getCar() {
        return car;
    }

    public void setCar(String car) {
        this.car = car;
    }
    
}

第二步:获取实体类对象,并将数据set进去

		//实体类对象(JavaBean)
        MyInfomation infomation=new MyInfomation();
        infomation.setName("狗狗侠");
        infomation.setAge(23);
        infomation.setCar("雪佛兰");

第三步:构建Gson对象

Gson gson=new Gson();

第四步:调用Gson的toJson方法并将实体类对象出入,打印出来

Log.d("Json数据",gson.toJson(infomation));

老规矩:完整代码给一份

//实体类对象(JavaBean)
        MyInfomation infomation=new MyInfomation();
        infomation.setName("狗狗侠");
        infomation.setAge(23);
        infomation.setCar("雪佛兰");
        
        Gson gson=new Gson();
        
        Log.d("Json数据",gson.toJson(infomation));

ok!简单应用就是这么搞了。