使用GSON将JSON转换为Java对象

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

在这篇文章中,我们将创建一个例子,使用GSON library将JSON表示法转换为Java对象。
Gson是一个Java库,可用于将Java对象转换为其JSON表示。它也可以用来将JSON字符串转换为一个等价的Java对象。Gson可以处理任意的Java对象,包括你没有源代码的已有的对象。在这个例子中,我们将向你展示如何使用GSON将Java对象序列化为JSON。请看使用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类,我们将使用GSON将JSON表示法反序列化为这个Student Java对象。

  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对JSON进行反序列化或转换为Java对象

  1. package net.javaguides.gson;
  2. import java.util.HashSet;
  3. import java.util.Set;
  4. import com.google.gson.Gson;
  5. /**
  6. *
  7. * @author Ramesh Fadatare
  8. *
  9. */
  10. public class GSONComplexObjectExample {
  11. public static void main(String[] args) {
  12. deserializeUserObject();
  13. }
  14. private static void deserializeUserObject() {
  15. Gson gson = new Gson();
  16. String jsonStr = "{\r\n" +
  17. " \"studentId\": 1000,\r\n" +
  18. " \"studentName\": \"Ramesh\",\r\n" +
  19. " \"studentPhoneNumbers\": [\r\n" +
  20. " {\r\n" +
  21. " \"phoneId\": 100,\r\n" +
  22. " \"phoneType\": \"Mobile Phone\",\r\n" +
  23. " \"phoneNumber\": \"1234567890\"\r\n" +
  24. " },\r\n" +
  25. " {\r\n" +
  26. " \"phoneId\": 101,\r\n" +
  27. " \"phoneType\": \"Landline Phone\",\r\n" +
  28. " \"phoneNumber\": \"2222 3333 44\"\r\n" +
  29. " }\r\n" +
  30. " ]\r\n" +
  31. "}";
  32. Student student = gson.fromJson(jsonStr, Student.class);
  33. System.out.println(student.toString());
  34. }
  35. }

输出

  1. Student [studentId=1000, studentName=Ramesh, studentPhoneNumbers=[net.javaguides.gson.Phone@5ce65a89, net.javaguides.gson.Phone@25f38edc]]

完整的例子供参考

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

输出

  1. Student [studentId=1000, studentName=Ramesh, studentPhoneNumbers=[net.javaguides.gson.Phone@5ce65a89, net.javaguides.gson.Phone@25f38edc]]

相关文章

最新文章

更多