Jackson
工具方法
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.fasterxml.jackson.databind.JavaType;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.type.CollectionType;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import org.apache.commons.lang.StringEscapeUtils;
import org.apache.commons.lang3.StringUtils;
import java.io.IOException;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.concurrent.ConcurrentHashMap;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.stream.Collectors;
import static com.fasterxml.jackson.databind.DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES;
public static <T> T jsonToObject(String json, Class<T> classType) throws IOException {
if (StringUtils.isBlank(json)) {
return null;
}
ObjectMapper objectMapper = new ObjectMapper();
objectMapper.configure(FAIL_ON_UNKNOWN_PROPERTIES, false);
return objectMapper.readValue(json, classType);
}
public static <T> Map<String, Object> jsonToMap(String json, Class<T> classType) throws IOException {
if (StringUtils.isBlank(json)) {
return null;
}
ObjectMapper objectMapper = new ObjectMapper();
objectMapper.configure(FAIL_ON_UNKNOWN_PROPERTIES, false);
Map<String, Object> map = Maps.newHashMap();
JavaType javaType = objectMapper.getTypeFactory().constructParametricType(HashMap.class, String.class, classType);
return objectMapper.readValue(json, javaType);
}
public static <T> List<T> jsonToList(String json, Class<T> classType) throws IOException {
if (StringUtils.isBlank(json)) {
return null;
}
ObjectMapper objectMapper = new ObjectMapper();
objectMapper.configure(FAIL_ON_UNKNOWN_PROPERTIES, false);
List<T> list = Lists.newArrayList();
CollectionType listType = objectMapper.getTypeFactory().constructCollectionType(ArrayList.class, classType);
return objectMapper.readValue(json, listType);
}
public static String objectToJson(Object o) throws IOException {
ObjectMapper objectMapper = new ObjectMapper();
return objectMapper.writeValueAsString(o);
}
public static String unescapeString(String text){
if (StringUtils.isBlank(text)){
return "";
}
text = StringEscapeUtils.unescapeJavaScript(text);
if (text.startsWith("\"")){
text = text.substring(1);
}
if (text.endsWith("\"")){
text = text.substring(0,text.length()-1);
}
text = text.replace("\\\\","");
return text;
}
- 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