首页 > Java > java教程 > 在Java中使用Gson时,什么时候需要使用@SerializedName注解?

在Java中使用Gson时,什么时候需要使用@SerializedName注解?

PHPz
发布: 2023-08-20 19:45:27
转载
1431 人浏览过

在Java中使用Gson时,什么时候需要使用@SerializedName注解?

@SerializedName注解可以用于将字段序列化为不同的名称,而不是实际的字段名称。我们可以将预期的序列化名称作为注解属性提供,Gson可以确保读取或写入具有提供的名称的字段。

语法

@Retention(value=RUNTIME)
@Target(value={FIELD,METHOD})
public @interface SerializedName
登录后复制

Example

import com.google.gson.*;
import com.google.gson.annotations.*;
public class SerializedNameTest {
   public static void main(String args[]) {
      <strong>Gson </strong>gson = new GsonBuilder().setPrettyPrinting().create();
      Person person = new Person(115, "Raja Ramesh", "Hyderabad");
      String jsonStr = gson.toJson(person);
      System.out.println(jsonStr);
   }
}
// Person class
class Person {
   @SerializedName("id")
   private int personId;
   @SerializedName("name")
   private String personName;
   private String personAddress;
   public Person(int personId, String personName, String personAddress) {
      this.personId = personId;
      this.personName = personName;
      this.personAddress = personAddress;
   }
   public int getPersonId() {
      return personId;
   }
   public String getPersonName() {
      return personName;
   }
   public String getPersonAddress() {
      return personAddress;
   }
}
登录后复制

Output

{
 "id": 115,
 "name": "Raja Ramesh",
 "personAddress": "Hyderabad"
}
登录后复制

以上是在Java中使用Gson时,什么时候需要使用@SerializedName注解?的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板