GSON - 序列化和反序列化集合实例

x33g5p2x  于2022-10-07 转载在 其他  
字(5.9k)|赞(0)|评价(0)|浏览(763)

在这篇快速文章中,我们将使用GSON来序列化和反序列化集合。在这个例子中,我们将IntegerEmployee对象的集合序列化为JSON表示,并使用TypeToken将整数的集合反序列化为任意的Java对象。

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>

###将雇员集合序列化

我们先来创建一个Employee POJO类。

  1. class Employee {
  2. private String firstName;
  3. private String lastName;
  4. public Employee(String firstName, String lastName) {
  5. super();
  6. this.firstName = firstName;
  7. this.lastName = lastName;
  8. }
  9. }

现在,让我们写一段代码来序列化一个雇员对象的集合。

  1. Gson gson = new Gson();
  2. // Serialization of collection of employees
  3. Collection<Employee> employees = Arrays.asList(new Employee("firstName1", "lastName1"),
  4. new Employee("firstName2", "lastName2"),
  5. new Employee("firstName3", "lastName3"),
  6. new Employee("firstName4", "lastName4"),
  7. new Employee("firstName5", "lastName5"));
  8. String empJson = gson.toJson(employees);
  9. System.out.println(empJson);

解除序列化雇员的集合

  1. // De-serialization of employee json to Collection of employee Java objects
  2. String employeeJson = "[\r\n" +
  3. " {\r\n" +
  4. " \"firstName\": \"firstName1\",\r\n" +
  5. " \"lastName\": \"lastName1\"\r\n" +
  6. " },\r\n" +
  7. " {\r\n" +
  8. " \"firstName\": \"firstName2\",\r\n" +
  9. " \"lastName\": \"lastName2\"\r\n" +
  10. " },\r\n" +
  11. " {\r\n" +
  12. " \"firstName\": \"firstName3\",\r\n" +
  13. " \"lastName\": \"lastName3\"\r\n" +
  14. " },\r\n" +
  15. " {\r\n" +
  16. " \"firstName\": \"firstName4\",\r\n" +
  17. " \"lastName\": \"lastName4\"\r\n" +
  18. " },\r\n" +
  19. " {\r\n" +
  20. " \"firstName\": \"firstName5\",\r\n" +
  21. " \"lastName\": \"lastName5\"\r\n" +
  22. " }\r\n" +
  23. "]";
  24. Type type = new TypeToken<Collection<Employee>>() {}.getType();
  25. Collection<Employee> collectionOfEmp = gson.fromJson(employeeJson, type);
  26. System.out.println(collectionOfEmp);

让我们再看一个例子,序列化和反序列化整数的集合。

对整数集合进行序列化和反序列化

  1. Gson gson = new GsonBuilder().setPrettyPrinting().create();
  2. Collection<Integer> ints = Arrays.asList(1, 2, 3, 4, 5);
  3. // Serialization of integer
  4. String json = gson.toJson(ints);
  5. System.out.println(json);
  6. // Deserialization of integer
  7. Type collectionType = new TypeToken<Collection<Integer>>() {}.getType();
  8. Collection<Integer> ints2 = gson.fromJson(json, collectionType);
  9. System.out.println(ints2);

完整的程序供参考

  1. package net.javaguides.gson;
  2. import java.lang.reflect.Type;
  3. import java.util.Arrays;
  4. import java.util.Collection;
  5. import com.google.gson.Gson;
  6. import com.google.gson.GsonBuilder;
  7. import com.google.gson.reflect.TypeToken;
  8. public class GSONCollectionsExample {
  9. public static void main(String[] args) {
  10. Gson gson = new GsonBuilder().setPrettyPrinting().create();
  11. Collection < Integer > ints = Arrays.asList(1, 2, 3, 4, 5);
  12. // Serialization of integer
  13. String json = gson.toJson(ints);
  14. System.out.println(json);
  15. // Serialization of collection of employees
  16. Collection < Employee > employees = Arrays.asList(new Employee("firstName1", "lastName1"),
  17. new Employee("firstName2", "lastName2"),
  18. new Employee("firstName3", "lastName3"),
  19. new Employee("firstName4", "lastName4"),
  20. new Employee("firstName5", "lastName5"));
  21. String empJson = gson.toJson(employees);
  22. System.out.println(empJson);
  23. // Deserialization of integer
  24. Type collectionType = new TypeToken < Collection < Integer >> () {}.getType();
  25. Collection < Integer > ints2 = gson.fromJson(json, collectionType);
  26. System.out.println(ints2);
  27. // De-serialization of employee json to Collection of employee Java objects
  28. String employeeJson = "[\r\n" +
  29. " {\r\n" +
  30. " \"firstName\": \"firstName1\",\r\n" +
  31. " \"lastName\": \"lastName1\"\r\n" +
  32. " },\r\n" +
  33. " {\r\n" +
  34. " \"firstName\": \"firstName2\",\r\n" +
  35. " \"lastName\": \"lastName2\"\r\n" +
  36. " },\r\n" +
  37. " {\r\n" +
  38. " \"firstName\": \"firstName3\",\r\n" +
  39. " \"lastName\": \"lastName3\"\r\n" +
  40. " },\r\n" +
  41. " {\r\n" +
  42. " \"firstName\": \"firstName4\",\r\n" +
  43. " \"lastName\": \"lastName4\"\r\n" +
  44. " },\r\n" +
  45. " {\r\n" +
  46. " \"firstName\": \"firstName5\",\r\n" +
  47. " \"lastName\": \"lastName5\"\r\n" +
  48. " }\r\n" +
  49. "]";
  50. Type type = new TypeToken < Collection < Employee >> () {}.getType();
  51. Collection < Employee > collectionOfEmp = gson.fromJson(employeeJson, type);
  52. System.out.println(collectionOfEmp);
  53. }
  54. }
  55. class Employee {
  56. private String firstName;
  57. private String lastName;
  58. public Employee(String firstName, String lastName) {
  59. super();
  60. this.firstName = firstName;
  61. this.lastName = lastName;
  62. }
  63. }

输出。

  1. [
  2. 1,
  3. 2,
  4. 3,
  5. 4,
  6. 5
  7. ]
  8. [
  9. {
  10. "firstName": "firstName1",
  11. "lastName": "lastName1"
  12. },
  13. {
  14. "firstName": "firstName2",
  15. "lastName": "lastName2"
  16. },
  17. {
  18. "firstName": "firstName3",
  19. "lastName": "lastName3"
  20. },
  21. {
  22. "firstName": "firstName4",
  23. "lastName": "lastName4"
  24. },
  25. {
  26. "firstName": "firstName5",
  27. "lastName": "lastName5"
  28. }
  29. ]
  30. [1, 2, 3, 4, 5]
  31. [net.javaguides.gson.Employee@1698c449, net.javaguides.gson.Employee@5ef04b5, net.javaguides.gson.Employee@5f4da5c3, net.javaguides.gson.Employee@443b7951, net.javaguides.gson.Employee@14514713]

集合的限制

Gson可以序列化一个任意对象的集合,但不能从中反序列化,因为用户没有办法指出结果对象的类型。相反,在反序列化时,集合必须是一个特定的、通用的类型。这是有道理的,在遵循良好的Java编码实践时,很少会出现问题。

相关文章