All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.rocketmq.research.gson.TestConvert Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
/**
 *
 */
package com.alibaba.rocketmq.research.gson;

/**
 * @author shijia.wxr
 */
public class TestConvert {

    public static void main(String[] args) {
        ContactBook contactBook = new ContactBook();

        contactBook.setName("张三的通信录");
        contactBook.setCode(100);

        contactBook.getContactList().add(new Contact("刘德华", 54, 60.56, "本科", SexType.BOY));
        contactBook.getContactList().add(new Contact("张惠妹", 41, 52.69, "研究生", SexType.GIRL));
        contactBook.getContactList().add(new Contact("周星驰", 54, 61.22, "博士", SexType.BOY));

        // String json = contactBook.encode();
        // System.out.println(json);
        //
        // ContactBook d = ContactBook.decode(json, ContactBook.class);
        // System.out.println(d);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy