Gson @SerializedName एनोटेशन प्रदान किए गए नाम मान के साथ इसके फ़ील्ड नाम के साथ JSON को क्रमबद्ध किया जा सकता है। यह एनोटेशन किसी भी FieldNameingPolicy . को ओवरराइड कर सकता है डिफ़ॉल्ट फ़ील्ड नामकरण नीति सहित जो Gson . पर सेट की गई हो सकती है उदाहरण। GsonBuilder . का उपयोग करके एक अलग नामकरण नीति सेट की जा सकती है कक्षा।
सिंटैक्स
@Retention(value=RUNTIME)
@Target(value={FIELD,METHOD})
public @interface SerializedName उदाहरण
import com.google.gson.annotations.*;
import com.google.gson.*;
public class SerializedNameAnnotationTest {
public static void main(String args[]) {
Employee emp = new Employee("Rahul", "Dev", 30, "Nagpur");
Gson gson = new GsonBuilder().setPrettyPrinting().create(); // pretty print
String jsonStr = gson.toJson(emp);
System.out.println(jsonStr);
}
}
// Employee class
class Employee {
@SerializedName("first_name")
private String firstName;
@SerializedName("last_name")
private String lastName;
private int age;
private String address;
public Employee() {
}
public Employee(String firstName, String lastName, int age, String address) {
super();
this.firstName = firstName;
this.lastName = lastName;
this.age = age;
this.address = address;
}
public String getFirstName() {
return firstName;
}
public String getLastName() {
return lastName;
}
public int getAge() {
return age;
}
public String getAddress() {
return address;
}
} आउटपुट
{
"first_name": "Rahul",
"last_name": "Dev",
"age": 30,
"address": "Nagpur"
}