使用GSON将Java对象转换为JSON

x33g5p2x  于2022-10-07 转载在 Java  
字(6.1k)|赞(0)|评价(0)|浏览(1077)

在本文中,我们将创建一个使用GSON library将Java对象转换或序列化为JSON表示的示例。

Gson是一个Java库,可用于将Java对象转换为其JSON表示形式。它还可以用于将JSON字符串转换为等效的Java对象。Gson可以处理任意Java对象,包括您没有源代码的预先存在的对象。在这个例子中,我们将向您展示如何使用GSON将Java对象序列化为JSON。

GSON Maven依赖项

要在Maven2/3中使用Gson,可以通过添加以下依赖项来使用Maven Central中的Gson版本:

  1. <dependencies>
  2. <!-- Gson: Java to Json conversion -->
  3. <dependency>
  4. <groupId>com.google.code.gson</groupId>
  5. <artifactId>gson</artifactId>
  6. <version>2.8.5</version>
  7. <scope>compile</scope>
  8. </dependency>
  9. </dependencies>

学生POJO类-要序列化的对象

让我们创建一个Student类,它与e1d1e1类有一对多关系。让我们创建StudentPhone类,并使用GSON将其序列化为JSON表示。

  1. class Student {
  2. private long studentId;
  3. private String studentName;
  4. private Set < Phone > studentPhoneNumbers = new HashSet < Phone > (0);
  5. public long getStudentId() {
  6. return studentId;
  7. }
  8. public void setStudentId(long studentId) {
  9. this.studentId = studentId;
  10. }
  11. public String getStudentName() {
  12. return studentName;
  13. }
  14. public void setStudentName(String studentName) {
  15. this.studentName = studentName;
  16. }
  17. public Set < Phone > getStudentPhoneNumbers() {
  18. return studentPhoneNumbers;
  19. }
  20. public void setStudentPhoneNumbers(Set < Phone > studentPhoneNumbers) {
  21. this.studentPhoneNumbers = studentPhoneNumbers;
  22. }
  23. @Override
  24. public String toString() {
  25. return "Student [studentId=" + studentId + ", studentName=" + studentName + ", studentPhoneNumbers=" +
  26. studentPhoneNumbers + "]";
  27. }
  28. }
  29. class Phone {
  30. private long phoneId;
  31. private String phoneType;
  32. private String phoneNumber;
  33. public Phone() {}
  34. public Phone(String phoneType, String phoneNumber) {
  35. this.phoneType = phoneType;
  36. this.phoneNumber = phoneNumber;
  37. }
  38. public long getPhoneId() {
  39. return phoneId;
  40. }
  41. public void setPhoneId(long phoneId) {
  42. this.phoneId = phoneId;
  43. }
  44. public String getPhoneType() {
  45. return phoneType;
  46. }
  47. public void setPhoneType(String phoneType) {
  48. this.phoneType = phoneType;
  49. }
  50. public String getPhoneNumber() {
  51. return phoneNumber;
  52. }
  53. public void setPhoneNumber(String phoneNumber) {
  54. this.phoneNumber = phoneNumber;
  55. }
  56. }

使用GSON将Java对象序列化或转换为JSON

在使用GSON将Java Object转换为JSON时,很高兴了解以下几点:

*不能用循环引用序列化对象,因为这将导致无限递归。
*Google GSON支持预先存在的对象。这意味着我们不需要用任何特殊的标记注释来注释类。
*序列化或反序列化时,默认情况下忽略瞬态字段。
*序列化时,将从输出中跳过空字段。
*反序列化时,JSON中缺少条目会导致将对象中的相应字段设置为null。
*与内部类、匿名类和本地类中的外部类对应的字段将被忽略,并且不会包含在序列化或反序列化中。

  1. package net.javaguides.gson;
  2. import java.util.HashSet;
  3. import java.util.Set;
  4. import com.google.gson.Gson;
  5. import com.google.gson.GsonBuilder;
  6. /**
  7. *
  8. * @author Ramesh Fadatare
  9. *
  10. */
  11. public class GSONComplexObjectExample {
  12. public static void main(String[] args) {
  13. serializeStudentObject();
  14. }
  15. private static void serializeStudentObject() {
  16. Gson gson = new GsonBuilder().setPrettyPrinting().create();
  17. Student student = createStudent();
  18. String jsonStr = gson.toJson(student);
  19. System.out.println(jsonStr);
  20. }
  21. private static Student createStudent() {
  22. Student student = new Student();
  23. student.setStudentId(1000);
  24. student.setStudentName("Ramesh");
  25. Set < Phone > phones = new HashSet < Phone > ();
  26. Phone phone = new Phone();
  27. phone.setPhoneId(100);
  28. phone.setPhoneNumber("1234567890");
  29. phone.setPhoneType("Mobile Phone");
  30. phones.add(phone);
  31. Phone phone1 = new Phone();
  32. phone1.setPhoneId(101);
  33. phone1.setPhoneNumber("2222 3333 44");
  34. phone1.setPhoneType("Landline Phone");
  35. phones.add(phone1);
  36. student.setStudentPhoneNumbers(phones);
  37. return student;
  38. }
  39. }

输出:

  1. {
  2. "studentId": 1000,
  3. "studentName": "Ramesh",
  4. "studentPhoneNumbers": [
  5. {
  6. "phoneId": 100,
  7. "phoneType": "Mobile Phone",
  8. "phoneNumber": "1234567890"
  9. },
  10. {
  11. "phoneId": 101,
  12. "phoneType": "Landline Phone",
  13. "phoneNumber": "2222 3333 44"
  14. }
  15. ]
  16. }

完整示例供参考

  1. package net.javaguides.gson;
  2. import java.util.HashSet;
  3. import java.util.Set;
  4. import com.google.gson.Gson;
  5. import com.google.gson.GsonBuilder;
  6. /**
  7. *
  8. * @author Ramesh Fadatare
  9. *
  10. */
  11. public class GSONComplexObjectExample {
  12. public static void main(String[] args) {
  13. serializeStudentObject();
  14. }
  15. private static void serializeStudentObject() {
  16. Gson gson = new GsonBuilder().setPrettyPrinting().create();
  17. Student student = createStudent();
  18. String jsonStr = gson.toJson(student);
  19. System.out.println(jsonStr);
  20. }
  21. private static Student createStudent() {
  22. Student student = new Student();
  23. student.setStudentId(1000);
  24. student.setStudentName("Ramesh");
  25. Set < Phone > phones = new HashSet < Phone > ();
  26. Phone phone = new Phone();
  27. phone.setPhoneId(100);
  28. phone.setPhoneNumber("1234567890");
  29. phone.setPhoneType("Mobile Phone");
  30. phones.add(phone);
  31. Phone phone1 = new Phone();
  32. phone1.setPhoneId(101);
  33. phone1.setPhoneNumber("2222 3333 44");
  34. phone1.setPhoneType("Landline Phone");
  35. phones.add(phone1);
  36. student.setStudentPhoneNumbers(phones);
  37. return student;
  38. }
  39. }
  40. class Student {
  41. private long studentId;
  42. private String studentName;
  43. private Set < Phone > studentPhoneNumbers = new HashSet < Phone > (0);
  44. public long getStudentId() {
  45. return studentId;
  46. }
  47. public void setStudentId(long studentId) {
  48. this.studentId = studentId;
  49. }
  50. public String getStudentName() {
  51. return studentName;
  52. }
  53. public void setStudentName(String studentName) {
  54. this.studentName = studentName;
  55. }
  56. public Set < Phone > getStudentPhoneNumbers() {
  57. return studentPhoneNumbers;
  58. }
  59. public void setStudentPhoneNumbers(Set < Phone > studentPhoneNumbers) {
  60. this.studentPhoneNumbers = studentPhoneNumbers;
  61. }
  62. @Override
  63. public String toString() {
  64. return "Student [studentId=" + studentId + ", studentName=" + studentName + ", studentPhoneNumbers=" +
  65. studentPhoneNumbers + "]";
  66. }
  67. }
  68. class Phone {
  69. private long phoneId;
  70. private String phoneType;
  71. private String phoneNumber;
  72. public Phone() {}
  73. public Phone(String phoneType, String phoneNumber) {
  74. this.phoneType = phoneType;
  75. this.phoneNumber = phoneNumber;
  76. }
  77. public long getPhoneId() {
  78. return phoneId;
  79. }
  80. public void setPhoneId(long phoneId) {
  81. this.phoneId = phoneId;
  82. }
  83. public String getPhoneType() {
  84. return phoneType;
  85. }
  86. public void setPhoneType(String phoneType) {
  87. this.phoneType = phoneType;
  88. }
  89. public String getPhoneNumber() {
  90. return phoneNumber;
  91. }
  92. public void setPhoneNumber(String phoneNumber) {
  93. this.phoneNumber = phoneNumber;
  94. }
  95. }

输出:

  1. {
  2. "studentId": 1000,
  3. "studentName": "Ramesh",
  4. "studentPhoneNumbers": [
  5. {
  6. "phoneId": 100,
  7. "phoneType": "Mobile Phone",
  8. "phoneNumber": "1234567890"
  9. },
  10. {
  11. "phoneId": 101,
  12. "phoneType": "Landline Phone",
  13. "phoneNumber": "2222 3333 44"
  14. }
  15. ]
  16. }

相关文章

最新文章

更多