码迷,mamicode.com
首页 > 其他好文 > 详细

gson的 Expose注解和 SerializedName注解

时间:2019-02-03 16:46:20      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:view   details   分享   []   人工智能   art   bool   oid   json   

1.使用@Expose可以区分实体中不想被序列化的属性

@Expose标签的2个属性. 

  1.1 deserialize
 (boolean) 反序列化 默认 true
    1.2 serialize  (boolean) 序列化 默认 true

    使用 new GsonBuilder().excludeFieldsWithoutExposeAnnotation().create();创建Gson对象,没有@Expose注释的属性将不会被序列化

 
public class User {

 

@Expose

private String username;

@Expose(serialize=false)

private int age ;

 

private List<String> list;

 

public User(String username, int age) {

super();

this.username = username;

this.age = age;

}

 

public String getUsername() {

return username;

}

public void setUsername(String username) {

this.username = username;

}

public int getAge() {

return age;

}

public void setAge(int age) {

this.age = age;

}

public List<String> getList() {

return list;

}

public void setList(List<String> list) {

this.list = list;

}

 

public static void main(String []args){

User user = new User("lemon",27);

List<String> list = new ArrayList<String>();

list.add("l1");

list.add("l2");

user.setList(list);

Gson g1 = new Gson();

//使用 new Gson();

System.out.println(g1.toJson(user)); //{"username":"lemon","age":27,"list":["l1","l2"]}

//使用 new GsonBuilder().excludeFieldsWithoutExposeAnnotation().create();

Gson g2 = new GsonBuilder().excludeFieldsWithoutExposeAnnotation().create();

System.out.println(g2.toJson(user)); //{"username":"lemon"}

  }

}

 

2.使用@SerializedName标签定义属性序列化后的名字

@Expose

@SerializedName("name")

private String username;


public static void main(String []args){

User user = new User("lemon",27);

List<String> list = new ArrayList<String>();

list.add("l1");

list.add("l2");

user.setList(list);

Gson g1 = new Gson();

//使用 new Gson();

//{"name":"lemon","age":27,"list":["l1","l2"]}

System.out.println(g1.toJson(user)); 

//使用 new GsonBuilder().excludeFieldsWithoutExposeAnnotation().create();

Gson g2 = new GsonBuilder().excludeFieldsWithoutExposeAnnotation().create();

//{"name":"lemon"}

System.out.println(g2.toJson(user)); 

}

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

gson的 Expose注解和 SerializedName注解

标签:view   details   分享   []   人工智能   art   bool   oid   json   

原文地址:https://www.cnblogs.com/skinchqqhah/p/10350607.html

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