前端之家收集整理的这篇文章主要介绍了
JSONUtils工具类,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
package com.admin.util;
import java.io.IOException;
import java.text.SimpleDateFormat;
import org.apache.commons.lang3.StringUtils;
import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.ObjectMapper;
/**
* json工具类
*
* @author chengdaolu
* @date 2017年5月28日
*/
public class JsonUtil {
private static final ObjectMapper json = new ObjectMapper()
.setDateFormat(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"));
public String toString(Object obj) throws JsonProcessingException {
return obj == null ? "" : json.writeValueAsString(obj);
}
public static <T> T toObj(String str,Class<T> valueType)
throws JsonParseException,JsonMappingException,IOException {
if (StringUtils.isEmpty(str)) {
return null;
}
return json.readValue(str,valueType);
}
public static <T> T toList(String str,TypeReference<T> valueTypeRef)
throws JsonParseException,IOException {
if (StringUtils.isEmpty(str) || null == valueTypeRef) {
return null;
}
return json.readValue(str,valueTypeRef);
}
}
原文链接:https://www.f2er.com/json/288891.html