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

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

PHPz
PHPz转载
2023-08-20 19:45:271433浏览

在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删除