import java.util.HashMap; import java.util.List; import java.util.Map; import com.alibaba.fastjson.JSON; /** * json工具 */ public class JsonUtil { /** * 对象转 json */ public static String toJson( Object o ){ return JSON.toJSONString( o ); } /** * json转对象 */ public static <T> T toObject( String json , Class<T> clazz ){ return JSON.parseObject( json, clazz ); } /** * json转list对象 */ public static <T> List<T> toListObject(String json, Class<T> clazz ){ return JSON.parseArray( json, clazz); } /** * json转Map(支持多层级) */ @SuppressWarnings( "unchecked") public static Map<String, Object> toMap( String json ){ Map<String, Object> m = new HashMap<String, Object>(); try{ m = toObject( json, HashMap. class ); for( String k : m .keySet() ){ Object v = m.get( k ); if( v != null ){ String valStr = String. valueOf( v ); if( valStr .startsWith( "{" ) && valStr.endsWith( "}" ) ){ m.put( k, toMap( valStr ) ); } } } } catch( Exception e ){ } return m ; } }
本文出自 “my dream fly on the sky” 博客,请务必保留此出处http://7915791.blog.51cto.com/7905791/1865984
原文地址:http://7915791.blog.51cto.com/7905791/1865984