GSON LocalDateTime、LocalDate序列化和反序列化示例

x33g5p2x  于2022-10-16 转载在 其他  
字(7.8k)|赞(0)|评价(0)|浏览(1591)

在本教程中,我们将为LocalDate和LocalDateTime类编写自定义序列化程序和反序列化程序。

  1. LocalDateSerializer
  2. LocalDateTimeSerializer
  3. LocalDateDeserializer
  4. LocalDateTimeDeserializer

Order POJO Class-要序列化和反序列化的对象

让我们首先定义一个要序列化和反序列化的对象-Order.java

  1. class Order {
  2. private int id;
  3. private String orderName;
  4. private String orderDesc;
  5. private LocalDate orderCreatedDate;
  6. private LocalDateTime orderCreatedDateTime;
  7. public int getId() {
  8. return id;
  9. }
  10. public void setId(int id) {
  11. this.id = id;
  12. }
  13. public String getOrderName() {
  14. return orderName;
  15. }
  16. public void setOrderName(String orderName) {
  17. this.orderName = orderName;
  18. }
  19. public String getOrderDesc() {
  20. return orderDesc;
  21. }
  22. public void setOrderDesc(String orderDesc) {
  23. this.orderDesc = orderDesc;
  24. }
  25. public LocalDate getOrderCreatedDate() {
  26. return orderCreatedDate;
  27. }
  28. public void setOrderCreatedDate(LocalDate orderCreatedDate) {
  29. this.orderCreatedDate = orderCreatedDate;
  30. }
  31. public LocalDateTime getOrderCreatedDateTime() {
  32. return orderCreatedDateTime;
  33. }
  34. public void setOrderCreatedDateTime(LocalDateTime orderCreatedDateTime) {
  35. this.orderCreatedDateTime = orderCreatedDateTime;
  36. }
  37. @Override
  38. public String toString() {
  39. return "Order [id=" + id + ", orderName=" + orderName + ", orderDesc=" + orderDesc + ", orderCreatedDate=" +
  40. orderCreatedDate + ", orderCreatedDateTime=" + orderCreatedDateTime + "]";
  41. }
  42. }

1.自定义GSON LocalDateSerializer

  1. class LocalDateSerializer implements JsonSerializer < LocalDate > {
  2. private static final DateTimeFormatter formatter = DateTimeFormatter.ofPattern("d-MMM-yyyy");
  3. @Override
  4. public JsonElement serialize(LocalDate localDate, Type srcType, JsonSerializationContext context) {
  5. return new JsonPrimitive(formatter.format(localDate));
  6. }
  7. }

请注意,我们将默认本地日期“2018-10-26”格式化为“2018年10月27日”。

2.自定义GSON LocalDateTimeSerializer

  1. class LocalDateTimeSerializer implements JsonSerializer < LocalDateTime > {
  2. private static final DateTimeFormatter formatter = DateTimeFormatter.ofPattern("d::MMM::uuuu HH::mm::ss");
  3. @Override
  4. public JsonElement serialize(LocalDateTime localDateTime, Type srcType, JsonSerializationContext context) {
  5. return new JsonPrimitive(formatter.format(localDateTime));
  6. }
  7. }

请注意,我们将默认本地日期“2018-10-26T11:09:05”格式化为“27::Oct::2018 14::35::13”。

3.自定义GSON LocalDateDeserializer

  1. class LocalDateDeserializer implements JsonDeserializer < LocalDate > {
  2. @Override
  3. public LocalDate deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context)
  4. throws JsonParseException {
  5. return LocalDate.parse(json.getAsString(),
  6. DateTimeFormatter.ofPattern("d-MMM-yyyy").withLocale(Locale.ENGLISH));
  7. }
  8. }

4.自定义GSON LocalDateTimeDeserializer

  1. class LocalDateTimeDeserializer implements JsonDeserializer < LocalDateTime > {
  2. @Override
  3. public LocalDateTime deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context)
  4. throws JsonParseException {
  5. return LocalDateTime.parse(json.getAsString(),
  6. DateTimeFormatter.ofPattern("d::MMM::uuuu HH::mm::ss").withLocale(Locale.ENGLISH));
  7. }
  8. }

注册自定义序列化程序和反序列化程序

  1. GsonBuilder gsonBuilder = new GsonBuilder();
  2. gsonBuilder.registerTypeAdapter(LocalDate.class, new LocalDateSerializer());
  3. gsonBuilder.registerTypeAdapter(LocalDateTime.class, new LocalDateTimeSerializer());
  4. gsonBuilder.registerTypeAdapter(LocalDate.class, new LocalDateDeserializer());
  5. gsonBuilder.registerTypeAdapter(LocalDateTime.class, new LocalDateTimeDeserializer());
  6. Gson gson = gsonBuilder.setPrettyPrinting().create();

GSON自定义序列化和反序列化示例

让我们编写一个完整的示例来演示GSON自定义序列化器和反序列化器的用法。

  1. package net.javaguides.gson;
  2. import java.lang.reflect.Type;
  3. import java.time.LocalDate;
  4. import java.time.LocalDateTime;
  5. import java.time.format.DateTimeFormatter;
  6. import java.util.Locale;
  7. import com.google.gson.Gson;
  8. import com.google.gson.GsonBuilder;
  9. import com.google.gson.JsonDeserializationContext;
  10. import com.google.gson.JsonDeserializer;
  11. import com.google.gson.JsonElement;
  12. import com.google.gson.JsonParseException;
  13. import com.google.gson.JsonPrimitive;
  14. import com.google.gson.JsonSerializationContext;
  15. import com.google.gson.JsonSerializer;
  16. public class GSONCustomSerDerExample {
  17. public static void main(String[] args) {
  18. Order order = new Order();
  19. order.setId(100);
  20. order.setOrderName("Book purchase");
  21. order.setOrderDesc("Java Head First");
  22. order.setOrderCreatedDate(LocalDate.now());
  23. order.setOrderCreatedDateTime(LocalDateTime.now());
  24. GsonBuilder gsonBuilder = new GsonBuilder();
  25. gsonBuilder.registerTypeAdapter(LocalDate.class, new LocalDateSerializer());
  26. gsonBuilder.registerTypeAdapter(LocalDateTime.class, new LocalDateTimeSerializer());
  27. gsonBuilder.registerTypeAdapter(LocalDate.class, new LocalDateDeserializer());
  28. gsonBuilder.registerTypeAdapter(LocalDateTime.class, new LocalDateTimeDeserializer());
  29. Gson gson = gsonBuilder.setPrettyPrinting().create();
  30. // Convert to JSON
  31. System.out.println(gson.toJson(order));
  32. String orderJson = "{\r\n" + " \"id\": 100,\r\n" + " \"orderName\": \"Book purchase\",\r\n" +
  33. " \"orderDesc\": \"Java Head First\",\r\n" + " \"orderCreatedDate\": \"26-Oct-2018\",\r\n" +
  34. " \"orderCreatedDateTime\": \"26::Oct::2018 11::09::05\",\r\n" +
  35. " \"orderCreatedZonedDateTime\": \"Oct 26 2018 11:09 AM\"\r\n" + "}";
  36. // Convert to java objects
  37. System.out.println(gson.fromJson(orderJson, Order.class));
  38. }
  39. }
  40. class Order {
  41. private int id;
  42. private String orderName;
  43. private String orderDesc;
  44. private LocalDate orderCreatedDate;
  45. private LocalDateTime orderCreatedDateTime;
  46. public int getId() {
  47. return id;
  48. }
  49. public void setId(int id) {
  50. this.id = id;
  51. }
  52. public String getOrderName() {
  53. return orderName;
  54. }
  55. public void setOrderName(String orderName) {
  56. this.orderName = orderName;
  57. }
  58. public String getOrderDesc() {
  59. return orderDesc;
  60. }
  61. public void setOrderDesc(String orderDesc) {
  62. this.orderDesc = orderDesc;
  63. }
  64. public LocalDate getOrderCreatedDate() {
  65. return orderCreatedDate;
  66. }
  67. public void setOrderCreatedDate(LocalDate orderCreatedDate) {
  68. this.orderCreatedDate = orderCreatedDate;
  69. }
  70. public LocalDateTime getOrderCreatedDateTime() {
  71. return orderCreatedDateTime;
  72. }
  73. public void setOrderCreatedDateTime(LocalDateTime orderCreatedDateTime) {
  74. this.orderCreatedDateTime = orderCreatedDateTime;
  75. }
  76. @Override
  77. public String toString() {
  78. return "Order [id=" + id + ", orderName=" + orderName + ", orderDesc=" + orderDesc + ", orderCreatedDate=" +
  79. orderCreatedDate + ", orderCreatedDateTime=" + orderCreatedDateTime + "]";
  80. }
  81. }
  82. class LocalDateSerializer implements JsonSerializer < LocalDate > {
  83. private static final DateTimeFormatter formatter = DateTimeFormatter.ofPattern("d-MMM-yyyy");
  84. @Override
  85. public JsonElement serialize(LocalDate localDate, Type srcType, JsonSerializationContext context) {
  86. return new JsonPrimitive(formatter.format(localDate));
  87. }
  88. }
  89. class LocalDateTimeSerializer implements JsonSerializer < LocalDateTime > {
  90. private static final DateTimeFormatter formatter = DateTimeFormatter.ofPattern("d::MMM::uuuu HH::mm::ss");
  91. @Override
  92. public JsonElement serialize(LocalDateTime localDateTime, Type srcType, JsonSerializationContext context) {
  93. return new JsonPrimitive(formatter.format(localDateTime));
  94. }
  95. }
  96. class LocalDateDeserializer implements JsonDeserializer < LocalDate > {
  97. @Override
  98. public LocalDate deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context)
  99. throws JsonParseException {
  100. return LocalDate.parse(json.getAsString(),
  101. DateTimeFormatter.ofPattern("d-MMM-yyyy").withLocale(Locale.ENGLISH));
  102. }
  103. }
  104. class LocalDateTimeDeserializer implements JsonDeserializer < LocalDateTime > {
  105. @Override
  106. public LocalDateTime deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context)
  107. throws JsonParseException {
  108. return LocalDateTime.parse(json.getAsString(),
  109. DateTimeFormatter.ofPattern("d::MMM::uuuu HH::mm::ss").withLocale(Locale.ENGLISH));
  110. }
  111. }

输出:

  1. {
  2. "id": 100,
  3. "orderName": "Book purchase",
  4. "orderDesc": "Java Head First",
  5. "orderCreatedDate": "27-Oct-2018",
  6. "orderCreatedDateTime": "27::Oct::2018 14::35::13"
  7. }
  8. Order [id=100, orderName=Book purchase, orderDesc=Java Head First, orderCreatedDate=2018-10-26, orderCreatedDateTime=2018-10-26T11:09:05]

相关文章