-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathjson util
867 lines (793 loc) · 23.9 KB
/
json util
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
import java.lang.reflect.Array;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.net.InetAddress;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Date;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Set;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org.json.JSONStringer;
import com.google.gson.Gson;
import android.util.Log;
/**
* JSON序列化反序列化工具类
*
*/
/**
* @author keane
*
*/
public class JSONHelper {
private static String TAG = "JSONHelper";
/**
* 将对象转换成Json字符串
* @param obj
* @return json类型字符串
*/
public static String toJSON(Object obj) {
JSONStringer js = new JSONStringer();
serialize(js, obj);
return js.toString();
}
/**
* 序列化为JSON
* @param js json对象
* @param o 待需序列化的对象
*/
private static void serialize(JSONStringer js, Object o) {
if (isNull(o)) {
try {
js.value(null);
} catch (JSONException e) {
e.printStackTrace();
}
return;
}
Class<?> clazz = o.getClass();
if (isObject(clazz)) { // 对象
serializeObject(js, o);
} else if (isArray(clazz)) { // 数组
serializeArray(js, o);
} else if (isCollection(clazz)) { // 集合
Collection<?> collection = (Collection<?>) o;
serializeCollect(js, collection);
}else if (isMap(clazz)) { // 集合
HashMap<?,?> collection = (HashMap<?,?>) o;
serializeMap(js, collection);
} else { // 单个值
try {
js.value(o);
} catch (JSONException e) {
e.printStackTrace();
}
}
}
/**
* 序列化数组
* @param js json对象
* @param array 数组
*/
private static void serializeArray(JSONStringer js, Object array) {
try {
js.array();
for (int i = 0; i < Array.getLength(array); ++i) {
Object o = Array.get(array, i);
serialize(js, o);
}
js.endArray();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 序列化集合
* @param js json对象
* @param collection 集合
*/
private static void serializeCollect(JSONStringer js, Collection<?> collection) {
try {
js.array();
for (Object o : collection) {
serialize(js, o);
}
js.endArray();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 序列化集合
* @param js json对象
* @param collection 集合
*/
private static void serializeMap(JSONStringer js, Map<?,?> map) {
try {
js.object();
@SuppressWarnings("unchecked")
Map<String, Object> valueMap = (Map<String, Object>) map;
Iterator<Map.Entry<String, Object>> it = valueMap.entrySet().iterator();
while (it.hasNext()) {
Map.Entry<String, Object> entry = (Map.Entry<String, Object>)it.next();
js.key(entry.getKey());
serialize(js,entry.getValue());
}
js.endObject();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 序列化对象
* @param js json对象
* @param obj 待序列化对象
*/
private static void serializeObject(JSONStringer js, Object obj) {
try {
js.object();
Class<? extends Object> objClazz = obj.getClass();
Method[] methods = objClazz.getDeclaredMethods();
Field[] fields = objClazz.getDeclaredFields();
for (Field field : fields) {
try {
String fieldType = field.getType().getSimpleName();
String fieldGetName = parseMethodName(field.getName(),"get");
if (!haveMethod(methods, fieldGetName)) {
continue;
}
Method fieldGetMet = objClazz.getMethod(fieldGetName, new Class[] {});
Object fieldVal = fieldGetMet.invoke(obj, new Object[] {});
String result = null;
if ("Date".equals(fieldType)) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss",Locale.US);
result = sdf.format((Date)fieldVal);
} else {
if (null != fieldVal) {
result = String.valueOf(fieldVal);
}
}
js.key(field.getName());
serialize(js, result);
} catch (Exception e) {
continue;
}
}
js.endObject();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 判断是否存在某属性的 get方法
* @param methods 引用方法的数组
* @param fieldMethod 方法名称
* @return true或者false
*/
public static boolean haveMethod(Method[] methods, String fieldMethod) {
for (Method met : methods) {
if (fieldMethod.equals(met.getName())) {
return true;
}
}
return false;
}
/**
* 拼接某属性的 get或者set方法
* @param fieldName 字段名称
* @param methodType 方法类型
* @return 方法名称
*/
public static String parseMethodName(String fieldName,String methodType) {
if (null == fieldName || "".equals(fieldName)) {
return null;
}
return methodType + fieldName.substring(0, 1).toUpperCase() + fieldName.substring(1);
}
/**
* 给字段赋值
* @param obj 实例对象
* @param valMap 值集合
*/
public static void setFieldValue(Object obj, Map<String, String> valMap) {
Class<?> cls = obj.getClass();
// 取出bean里的所有方法
Method[] methods = cls.getDeclaredMethods();
Field[] fields = cls.getDeclaredFields();
for (Field field : fields) {
try {
String setMetodName = parseMethodName(field.getName(),"set");
if (!haveMethod(methods, setMetodName)) {
continue;
}
Method fieldMethod = cls.getMethod(setMetodName, field
.getType());
String value = valMap.get(field.getName());
if (null != value && !"".equals(value)) {
String fieldType = field.getType().getSimpleName();
if ("String".equals(fieldType)) {
fieldMethod.invoke(obj, value);
} else if ("Date".equals(fieldType)) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss",Locale.US);
Date temp = sdf.parse(value);
fieldMethod.invoke(obj, temp);
} else if ("Integer".equals(fieldType)
|| "int".equals(fieldType)) {
Integer intval = Integer.parseInt(value);
fieldMethod.invoke(obj, intval);
} else if ("Long".equalsIgnoreCase(fieldType)) {
Long temp = Long.parseLong(value);
fieldMethod.invoke(obj, temp);
} else if ("Double".equalsIgnoreCase(fieldType)) {
Double temp = Double.parseDouble(value);
fieldMethod.invoke(obj, temp);
} else if ("Boolean".equalsIgnoreCase(fieldType)) {
Boolean temp = Boolean.parseBoolean(value);
fieldMethod.invoke(obj, temp);
} else {
System.out.println("setFieldValue not supper type:" + fieldType);
}
}
} catch (Exception e) {
continue;
}
}
}
/**
* bean对象转Map
* @param obj 实例对象
* @return map集合
*/
public static Map<String, String> beanToMap(Object obj) {
Class<?> cls = obj.getClass();
Map<String, String> valueMap = new HashMap<String, String>();
// 取出bean里的所有方法
Method[] methods = cls.getDeclaredMethods();
Field[] fields = cls.getDeclaredFields();
for (Field field : fields) {
try {
String fieldType = field.getType().getSimpleName();
String fieldGetName = parseMethodName(field.getName(),"get");
if (!haveMethod(methods, fieldGetName)) {
continue;
}
Method fieldGetMet = cls.getMethod(fieldGetName, new Class[] {});
Object fieldVal = fieldGetMet.invoke(obj, new Object[] {});
String result = null;
if ("Date".equals(fieldType)) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss",Locale.CHINA);
result = sdf.format((Date)fieldVal);
} else {
if (null != fieldVal) {
result = String.valueOf(fieldVal);
}
}
valueMap.put(field.getName(), result);
} catch (Exception e) {
continue;
}
}
return valueMap;
}
/**
* 给对象的字段赋值
* @param obj 类实例
* @param fieldSetMethod 字段方法
* @param fieldType 字段类型
* @param value
*/
public static void setFiedlValue(Object obj,Method fieldSetMethod,String fieldType,Object value){
try {
if (null != value && !"".equals(value)) {
if ("String".equals(fieldType)) {
fieldSetMethod.invoke(obj, value.toString());
} else if ("Date".equals(fieldType)) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss",Locale.CHINA);
Date temp = sdf.parse(value.toString());
fieldSetMethod.invoke(obj, temp);
} else if ("Integer".equals(fieldType)
|| "int".equals(fieldType)) {
Integer intval = Integer.parseInt(value.toString());
fieldSetMethod.invoke(obj, intval);
} else if ("Long".equalsIgnoreCase(fieldType)) {
Long temp = Long.parseLong(value.toString());
fieldSetMethod.invoke(obj, temp);
} else if ("Double".equalsIgnoreCase(fieldType)) {
Double temp = Double.parseDouble(value.toString());
fieldSetMethod.invoke(obj, temp);
} else if ("Boolean".equalsIgnoreCase(fieldType)) {
Boolean temp = Boolean.parseBoolean(value.toString());
fieldSetMethod.invoke(obj, temp);
} else {
fieldSetMethod.invoke(obj, value);
Log.e(TAG, TAG + ">>>>setFiedlValue -> not supper type" + fieldType);
}
}
} catch (Exception e) {
// Log.e(TAG, TAG + ">>>>>>>>>>set value error.",e);
e.printStackTrace();
}
}
/**
* 反序列化简单对象
* @param jo json对象
* @param clazz 实体类类型
* @return 反序列化后的实例
* @throws JSONException
*/
public static <T> T parseObject(JSONObject jo, Class<T> clazz) throws JSONException {
if (clazz == null || isNull(jo)) {
return null;
}
T obj = newInstance(clazz);
if (obj == null) {
return null;
}
return parseObject(jo,obj);
}
/**
* 反序列化简单对象
* @param jo json对象
* @param obj 实体
* @return 反序列化后的实例
* @throws JSONException
*/
public static <T> T parseObject(JSONObject jo, T obj) throws JSONException {
if (obj == null || isNull(jo)) {
return null;
}
Class<?> clazz = obj.getClass();
if(isMap(clazz)){
setField(obj,jo);
}else{
// 取出bean里的所有方法
Method[] methods = clazz.getDeclaredMethods();
Field[] fields = clazz.getDeclaredFields();
for (Field f : fields) {
String setMetodName = parseMethodName(f.getName(),"set");
if (!haveMethod(methods, setMetodName)) {
continue;
}
try {
Method fieldMethod = clazz.getMethod(setMetodName, f.getType());
setField(obj,fieldMethod,f, jo);
} catch (Exception e) {
e.printStackTrace();
}
}
}
return obj;
}
/**
* 反序列化简单对象
* @param jsonStr json字符串
* @param clazz 实体类类型
* @return 反序列化后的实例
* @throws JSONException
*/
public static <T> T parseObject(String jsonStr, Class<T> clazz) throws JSONException {
if (clazz == null || jsonStr == null || jsonStr.length() == 0) {
return null;
}
JSONObject jo = null;
jo = new JSONObject(jsonStr);
if (isNull(jo)) {
return null;
}
return parseObject(jo, clazz);
}
/**
* 反序列化简单对象
* @param jsonStr json字符串
* @param obj 实体
* @return 反序列化后的实例
* @throws JSONException
*/
public static <T> T parseObject(String jsonStr, T obj) throws JSONException {
if (obj == null || jsonStr == null || jsonStr.length() == 0) {
return null;
}
JSONObject jo = null;
jo = new JSONObject(jsonStr);
if (isNull(jo)) {
return null;
}
return parseObject(jo, obj);
}
/**
* 反序列化数组对象
* @param ja json数组
* @param clazz 实体类类型
* @return 反序列化后的数组
*/
public static <T> T[] parseArray(JSONArray ja, Class<T> clazz) {
if (clazz == null || isNull(ja)) {
return null;
}
int len = ja.length();
@SuppressWarnings("unchecked")
T[] array = (T[]) Array.newInstance(clazz, len);
for (int i = 0; i < len; ++i) {
try {
JSONObject jo = ja.getJSONObject(i);
T o = parseObject(jo, clazz);
array[i] = o;
} catch (JSONException e) {
e.printStackTrace();
}
}
return array;
}
/**
* 反序列化数组对象
* @param jsonStr json字符串
* @param clazz 实体类类型
* @return 序列化后的数组
*/
public static <T> T[] parseArray(String jsonStr, Class<T> clazz) {
if (clazz == null || jsonStr == null || jsonStr.length() == 0) {
return null;
}
JSONArray jo = null;
try {
jo = new JSONArray(jsonStr);
} catch (JSONException e) {
e.printStackTrace();
}
if (isNull(jo)) {
return null;
}
return parseArray(jo, clazz);
}
/**
* 反序列化泛型集合
* @param ja json数组
* @param collectionClazz 集合类型
* @param genericType 实体类类型
* @return
* @throws JSONException
*/
@SuppressWarnings("unchecked")
public static <T> Collection<T> parseCollection(JSONArray ja, Class<?> collectionClazz,
Class<T> genericType) throws JSONException {
if (collectionClazz == null || genericType == null || isNull(ja)) {
return null;
}
Collection<T> collection = (Collection<T>) newInstance(collectionClazz);
for (int i = 0; i < ja.length(); ++i) {
try {
JSONObject jo = ja.getJSONObject(i);
T o = parseObject(jo, genericType);
collection.add(o);
} catch (JSONException e) {
e.printStackTrace();
}
}
return collection;
}
/**
* 反序列化泛型集合
* @param jsonStr json字符串
* @param collectionClazz 集合类型
* @param genericType 实体类类型
* @return 反序列化后的数组
* @throws JSONException
*/
public static <T> Collection<T> parseCollection(String jsonStr, Class<?> collectionClazz,
Class<T> genericType) throws JSONException {
if (collectionClazz == null || genericType == null || jsonStr == null
|| jsonStr.length() == 0) {
return null;
}
JSONArray jo = null;
try {
String arrayString = jsonStr;
int index = jsonStr.indexOf("[");//如果为数组,则此处转化时,需要去掉前面的键,直接后面的[]中的值
if(index > 0){
arrayString = jsonStr.substring(index,jsonStr.lastIndexOf("]") + 1);
}
jo = new JSONArray(arrayString);
} catch (JSONException e) {
e.printStackTrace();
}
if (isNull(jo)) {
return null;
}
return parseCollection(jo, collectionClazz, genericType);
}
/**
* 将son转为对象
* @param jsonStr json字符串
* @param genericType 实体类类型
* @return 反序列化后的数组
* @throws JSONException
*/
public static <T> Object parseJsonObject(String jsonStr,
Class<T> genericType) throws JSONException {
if (genericType == null || jsonStr == null
|| jsonStr.length() == 0) {
return null;
}
Gson gson = GsonUtil.getGson();
BaseWSDto json = gson.fromJson(jsonStr, BaseWSDto.class);
Object data = json.getData();
// 再一次转换成Json字符串
String jsonData = gson.toJson(data);
return gson.fromJson(jsonData, genericType);
}
/**
* 根据类型创建对象
* @param clazz 待创建实例的类型
* @return 实例对象
* @throws JSONException
*/
@SuppressWarnings({ "unchecked", "rawtypes" })
private static <T> T newInstance(Class<T> clazz) throws JSONException {
if (clazz == null)
return null;
T obj = null;
if (clazz.isInterface()) {
if (clazz.equals(Map.class)) {
obj = (T) new HashMap();
}else if (clazz.equals(List.class)) {
obj = (T) new ArrayList();
}else if (clazz.equals(Set.class)) {
obj = (T) new HashSet();
}else{
throw new JSONException("unknown interface: " + clazz);
}
}else{
try {
obj = clazz.newInstance();
}catch (Exception e) {
throw new JSONException("unknown class type: " + clazz);
}
}
return obj;
}
/**
* 设定Map的值
* @param obj 待赋值字段的对象
* @param jo json实例
*/
private static void setField(Object obj, JSONObject jo) {
try {
@SuppressWarnings("unchecked")
Iterator<String> keyIter = jo.keys();
String key;
Object value;
@SuppressWarnings("unchecked")
Map<String, Object> valueMap = (Map<String, Object>) obj;
while (keyIter.hasNext()) {
key = (String) keyIter.next();
value = jo.get(key);
valueMap.put(key, value);
}
} catch (JSONException e) {
e.printStackTrace();
}
}
/**
* 设定字段的值
* @param obj 待赋值字段的对象
* @param fieldSetMethod 字段方法名
* @param field 字段
* @param jo json实例
*/
private static void setField(Object obj, Method fieldSetMethod,Field field, JSONObject jo) {
String name = field.getName();
Class<?> clazz = field.getType();
try {
if (isArray(clazz)) { // 数组
Class<?> c = clazz.getComponentType();
JSONArray ja = jo.optJSONArray(name);
if (!isNull(ja)) {
Object array = parseArray(ja, c);
setFiedlValue(obj, fieldSetMethod, clazz.getSimpleName(), array);
}
} else if (isCollection(clazz)) { // 泛型集合
// 获取定义的泛型类型
Class<?> c = null;
Type gType = field.getGenericType();
if (gType instanceof ParameterizedType) {
ParameterizedType ptype = (ParameterizedType) gType;
Type[] targs = ptype.getActualTypeArguments();
if (targs != null && targs.length > 0) {
Type t = targs[0];
c = (Class<?>) t;
}
}
JSONArray ja = jo.optJSONArray(name);
if (!isNull(ja)) {
Object o = parseCollection(ja, clazz, c);
setFiedlValue(obj, fieldSetMethod, clazz.getSimpleName(), o);
}
} else if (isSingle(clazz)) { // 值类型
Object o = jo.opt(name);
if (o != null) {
setFiedlValue(obj, fieldSetMethod, clazz.getSimpleName(), o);
}
} else if (isObject(clazz)) { // 对象
JSONObject j = jo.optJSONObject(name);
if (!isNull(j)) {
Object o = parseObject(j, clazz);
setFiedlValue(obj, fieldSetMethod, clazz.getSimpleName(), o);
}
} else if (isList(clazz)) { // 列表
// JSONObject j = jo.optJSONObject(name);
// if (!isNull(j)) {
// Object o = parseObject(j, clazz);
// f.set(obj, o);
// }
} else {
throw new Exception("unknow type!");
}
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 设定字段的值
* @param obj 待赋值字段的对象
* @param field 字段
* @param jo json实例
*/
@SuppressWarnings("unused")
private static void setField(Object obj, Field field, JSONObject jo) {
String name = field.getName();
Class<?> clazz = field.getType();
try {
if (isArray(clazz)) { // 数组
Class<?> c = clazz.getComponentType();
JSONArray ja = jo.optJSONArray(name);
if (!isNull(ja)) {
Object array = parseArray(ja, c);
field.set(obj, array);
}
} else if (isCollection(clazz)) { // 泛型集合
// 获取定义的泛型类型
Class<?> c = null;
Type gType = field.getGenericType();
if (gType instanceof ParameterizedType) {
ParameterizedType ptype = (ParameterizedType) gType;
Type[] targs = ptype.getActualTypeArguments();
if (targs != null && targs.length > 0) {
Type t = targs[0];
c = (Class<?>) t;
}
}
JSONArray ja = jo.optJSONArray(name);
if (!isNull(ja)) {
Object o = parseCollection(ja, clazz, c);
field.set(obj, o);
}
} else if (isSingle(clazz)) { // 值类型
Object o = jo.opt(name);
if (o != null) {
field.set(obj, o);
}
} else if (isObject(clazz)) { // 对象
JSONObject j = jo.optJSONObject(name);
if (!isNull(j)) {
Object o = parseObject(j, clazz);
field.set(obj, o);
}
} else if (isList(clazz)) { // 列表
JSONObject j = jo.optJSONObject(name);
if (!isNull(j)) {
Object o = parseObject(j, clazz);
field.set(obj, o);
}
}else {
throw new Exception("unknow type!");
}
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 判断对象是否为空
* @param obj 实例
* @return
*/
private static boolean isNull(Object obj) {
if (obj instanceof JSONObject) {
return JSONObject.NULL.equals(obj);
}
return obj == null;
}
/**
* 判断是否是值类型
* @param clazz
* @return
*/
private static boolean isSingle(Class<?> clazz) {
return isBoolean(clazz) || isNumber(clazz) || isString(clazz);
}
/**
* 是否布尔值
* @param clazz
* @return
*/
public static boolean isBoolean(Class<?> clazz) {
return (clazz != null)
&& ((Boolean.TYPE.isAssignableFrom(clazz)) || (Boolean.class
.isAssignableFrom(clazz)));
}
/**
* 是否数值
* @param clazz
* @return
*/
public static boolean isNumber(Class<?> clazz) {
return (clazz != null)
&& ((Byte.TYPE.isAssignableFrom(clazz)) || (Short.TYPE.isAssignableFrom(clazz))
|| (Integer.TYPE.isAssignableFrom(clazz))
|| (Long.TYPE.isAssignableFrom(clazz))
|| (Float.TYPE.isAssignableFrom(clazz))
|| (Double.TYPE.isAssignableFrom(clazz)) || (Number.class
.isAssignableFrom(clazz)));
}
/**
* 判断是否是字符串
* @param clazz
* @return
*/
public static boolean isString(Class<?> clazz) {
return (clazz != null)
&& ((String.class.isAssignableFrom(clazz))
|| (Character.TYPE.isAssignableFrom(clazz)) || (Character.class
.isAssignableFrom(clazz)));
}
/**
* 判断是否是对象
* @param clazz
* @return
*/
private static boolean isObject(Class<?> clazz) {
return clazz != null && !isSingle(clazz) && !isArray(clazz) && !isCollection(clazz) && !isMap(clazz);
}
/**
* 判断是否是数组
* @param clazz
* @return
*/
public static boolean isArray(Class<?> clazz) {
return clazz != null && clazz.isArray();
}
/**
* 判断是否是集合
* @param clazz
* @return
*/
public static boolean isCollection(Class<?> clazz) {
return clazz != null && Collection.class.isAssignableFrom(clazz);
}
/**
* 判断是否是Map
* @param clazz
* @return
*/
public static boolean isMap(Class<?> clazz) {
return clazz != null && Map.class.isAssignableFrom(clazz);
}
/**
* 判断是否是列表
* @param clazz
* @return
*/
public static boolean isList(Class<?> clazz) {
return clazz != null && List.class.isAssignableFrom(clazz);
}
}