Blame view

src/main/java/com/objecteye/utils/JSONUtils.java 12.3 KB
020ea372   Hugiee.Liu   fea: 测试接口添加
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
  /*
   * Licensed to the Apache Software Foundation (ASF) under one or more
   * contributor license agreements.  See the NOTICE file distributed with
   * this work for additional information regarding copyright ownership.
   * The ASF licenses this file to You under the Apache License, Version 2.0
   * (the "License"); you may not use this file except in compliance with
   * the License.  You may obtain a copy of the License at
   *
   *    http://www.apache.org/licenses/LICENSE-2.0
   *
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   */
  
  package com.objecteye.utils;
  
  import com.fasterxml.jackson.core.JsonGenerator;
  import com.fasterxml.jackson.core.JsonParser;
  import com.fasterxml.jackson.core.JsonProcessingException;
  import com.fasterxml.jackson.core.type.TypeReference;
  import com.fasterxml.jackson.databind.*;
  import com.fasterxml.jackson.databind.json.JsonMapper;
  import com.fasterxml.jackson.databind.module.SimpleModule;
  import com.fasterxml.jackson.databind.node.ArrayNode;
  import com.fasterxml.jackson.databind.node.ObjectNode;
  import com.fasterxml.jackson.databind.node.TextNode;
  import com.fasterxml.jackson.databind.type.CollectionType;
  import lombok.extern.slf4j.Slf4j;
  import org.apache.commons.lang3.StringUtils;
  import org.springframework.lang.Nullable;
  
  import java.io.IOException;
  import java.text.SimpleDateFormat;
  import java.time.LocalDateTime;
  import java.time.format.DateTimeFormatter;
  import java.util.*;
  
  import static com.fasterxml.jackson.databind.DeserializationFeature.*;
  import static com.fasterxml.jackson.databind.MapperFeature.REQUIRE_SETTERS_FOR_GETTERS;
  import static com.objecteye.content.VIIDContent.YYYY_MM_DD_HH_MM_SS;
  import static java.nio.charset.StandardCharsets.UTF_8;
  
  /**
   * json utils
   */
  @Slf4j
  public class JSONUtils {
  
      static {
          log.info("init timezone: {}", TimeZone.getDefault());
      }
  
      private static final ObjectMapper objectMapper = JsonMapper.builder()
              .configure(FAIL_ON_UNKNOWN_PROPERTIES, false)
              .configure(ACCEPT_EMPTY_ARRAY_AS_NULL_OBJECT, true)
              .configure(READ_UNKNOWN_ENUM_VALUES_AS_NULL, true)
              .configure(REQUIRE_SETTERS_FOR_GETTERS, true)
              .addModule(new SimpleModule()
                      .addSerializer(LocalDateTime.class, new LocalDateTimeSerializer())
                      .addDeserializer(LocalDateTime.class, new LocalDateTimeDeserializer()))
              .defaultTimeZone(TimeZone.getDefault())
              .defaultDateFormat(new SimpleDateFormat(YYYY_MM_DD_HH_MM_SS))
              .build();
  
      private JSONUtils() {
          throw new UnsupportedOperationException("Construct JSONUtils");
      }
  
      public static synchronized void setTimeZone(TimeZone timeZone) {
          objectMapper.setTimeZone(timeZone);
      }
  
      public static ArrayNode createArrayNode() {
          return objectMapper.createArrayNode();
      }
  
      public static ObjectNode createObjectNode() {
          return objectMapper.createObjectNode();
      }
  
      public static JsonNode toJsonNode(Object obj) {
          return objectMapper.valueToTree(obj);
      }
  
      /**
       * json representation of object
       *
       * @param object object
       * @param feature feature
       * @return object to json string
       */
      public static String toJsonString(Object object, SerializationFeature feature) {
          try {
              ObjectWriter writer = objectMapper.writer(feature);
              return writer.writeValueAsString(object);
          } catch (Exception e) {
              log.error("object to json exception!", e);
          }
  
          return null;
      }
  
      /**
       * This method deserializes the specified Json into an object of the specified class. It is not
       * suitable to use if the specified class is a generic type since it will not have the generic
       * type information because of the Type Erasure feature of Java. Therefore, this method should not
       * be used if the desired type is a generic type. Note that this method works fine if the any of
       * the fields of the specified object are generics, just the object itself should not be a
       * generic type.
       *
       * @param json the string from which the object is to be deserialized
       * @param clazz the class of T
       * @param <T> T
       * @return an object of type T from the string
       * classOfT
       */
      public static @Nullable <T> T parseObject(String json, Class<T> clazz) {
          if (StringUtils.isBlank(json)) {
              return null;
          }
  
          try {
              return objectMapper.readValue(json, clazz);
          } catch (Exception e) {
              log.error("Parse object exception, jsonStr: {}, class: {}", json, clazz, e);
          }
          return null;
      }
  
      /**
       *  deserialize
       *
       * @param src byte array
       * @param clazz class
       * @param <T> deserialize type
       * @return deserialize type
       */
      public static <T> T parseObject(byte[] src, Class<T> clazz) {
          if (src == null) {
              return null;
          }
          String json = new String(src, UTF_8);
          return parseObject(json, clazz);
      }
  
      /**
       * json to list
       *
       * @param json json string
       * @param clazz class
       * @param <T> T
       * @return list
       */
      public static <T> List<T> toList(String json, Class<T> clazz) {
          if (StringUtils.isBlank(json)) {
              return Collections.emptyList();
          }
  
          try {
              CollectionType listType = objectMapper.getTypeFactory().constructCollectionType(ArrayList.class, clazz);
              return objectMapper.readValue(json, listType);
          } catch (Exception e) {
              log.error("parse list exception!", e);
          }
  
          return Collections.emptyList();
      }
  
      /**
       * check json object valid
       *
       * @param json json
       * @return true if valid
       */
      public static boolean checkJsonValid(String json) {
  
          if (StringUtils.isBlank(json)) {
              return false;
          }
  
          try {
              objectMapper.readTree(json);
              return true;
          } catch (IOException e) {
              log.error("check json object valid exception!", e);
          }
  
          return false;
      }
  
      /**
       * Method for finding a JSON Object field with specified name in this
       * node or its child nodes, and returning value it has.
       * If no matching field is found in this node or its descendants, returns null.
       *
       * @param jsonNode json node
       * @param fieldName Name of field to look for
       * @return Value of first matching node found, if any; null if none
       */
      public static String findValue(JsonNode jsonNode, String fieldName) {
          JsonNode node = jsonNode.findValue(fieldName);
  
          if (node == null) {
              return null;
          }
  
          return node.asText();
      }
  
      /**
       * json to map
       * {@link #toMap(String, Class, Class)}
       *
       * @param json json
       * @return json to map
       */
      public static Map<String, String> toMap(String json) {
          return parseObject(json, new TypeReference<Map<String, String>>() {
          });
      }
  
      /**
       * json to map
       *
       * @param json json
       * @param classK classK
       * @param classV classV
       * @param <K> K
       * @param <V> V
       * @return to map
       */
      public static <K, V> Map<K, V> toMap(String json, Class<K> classK, Class<V> classV) {
          if (StringUtils.isBlank(json)) {
              return Collections.emptyMap();
          }
  
          try {
              return objectMapper.readValue(json, new TypeReference<Map<K, V>>() {
              });
          } catch (Exception e) {
              log.error("json to map exception!", e);
          }
  
          return Collections.emptyMap();
      }
  
      /**
       * from the key-value generated json  to get the str value no matter the real type of value
       * @param json the json str
       * @param nodeName key
       * @return the str value of key
       */
      public static String getNodeString(String json, String nodeName) {
          try {
              JsonNode rootNode = objectMapper.readTree(json);
              JsonNode jsonNode = rootNode.findValue(nodeName);
              if (Objects.isNull(jsonNode)) {
                  return "";
              }
              return jsonNode.isTextual() ? jsonNode.asText() : jsonNode.toString();
          } catch (JsonProcessingException e) {
              return "";
          }
      }
  
      /**
       * json to object
       *
       * @param json json string
       * @param type type reference
       * @param <T>
       * @return return parse object
       */
      public static <T> T parseObject(String json, TypeReference<T> type) {
          if (StringUtils.isBlank(json)) {
              return null;
          }
  
          try {
              return objectMapper.readValue(json, type);
          } catch (Exception e) {
              log.error("json to map exception!", e);
          }
  
          return null;
      }
  
      /**
       * object to json string
       *
       * @param object object
       * @return json string
       */
      public static String toJsonString(Object object) {
          try {
              return objectMapper.writeValueAsString(object);
          } catch (Exception e) {
              throw new RuntimeException("Object json deserialization exception.", e);
          }
      }
  
      public static String toPrettyJsonString(Object object) {
          try {
              return objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(object);
          } catch (Exception e) {
              throw new RuntimeException("Object json deserialization exception.", e);
          }
      }
  
      /**
       * serialize to json byte
       *
       * @param obj object
       * @param <T> object type
       * @return byte array
       */
      public static <T> byte[] toJsonByteArray(T obj) {
          if (obj == null) {
              return null;
          }
          String json = "";
          try {
              json = toJsonString(obj);
          } catch (Exception e) {
              log.error("json serialize exception.", e);
          }
  
          return json.getBytes(UTF_8);
      }
  
      public static ObjectNode parseObject(String text) {
          try {
              if (StringUtils.isEmpty(text)) {
                  return parseObject(text, ObjectNode.class);
              } else {
                  return (ObjectNode) objectMapper.readTree(text);
              }
          } catch (Exception e) {
              throw new RuntimeException("String json deserialization exception.", e);
          }
      }
  
      public static ArrayNode parseArray(String text) {
          try {
              return (ArrayNode) objectMapper.readTree(text);
          } catch (Exception e) {
              throw new RuntimeException("Json deserialization exception.", e);
          }
      }
  
      /**
       * json serializer
       */
      public static class JsonDataSerializer extends JsonSerializer<String> {
  
          @Override
          public void serialize(String value, JsonGenerator gen, SerializerProvider provider) throws IOException {
              gen.writeRawValue(value);
          }
  
      }
  
      /**
       * json data deserializer
       */
      public static class JsonDataDeserializer extends JsonDeserializer<String> {
  
          @Override
          public String deserialize(JsonParser p, DeserializationContext ctxt) throws IOException {
              JsonNode node = p.getCodec().readTree(p);
              if (node instanceof TextNode) {
                  return node.asText();
              } else {
                  return node.toString();
              }
          }
  
      }
  
      public static class LocalDateTimeSerializer extends JsonSerializer<LocalDateTime> {
  
          DateTimeFormatter formatter = DateTimeFormatter.ofPattern(YYYY_MM_DD_HH_MM_SS);
  
          @Override
          public void serialize(LocalDateTime value,
                                JsonGenerator gen,
                                SerializerProvider serializers) throws IOException {
              gen.writeString(value.format(formatter));
          }
      }
  
      public static class LocalDateTimeDeserializer extends JsonDeserializer<LocalDateTime> {
  
          DateTimeFormatter formatter = DateTimeFormatter.ofPattern(YYYY_MM_DD_HH_MM_SS);
  
          @Override
          public LocalDateTime deserialize(JsonParser p, DeserializationContext context) throws IOException {
              return LocalDateTime.parse(p.getValueAsString(), formatter);
          }
      }
  }