json字符串转各种类型

json数组字符串转List

List<String> strList = JsonUtil.fromJson( _userIdList,new TypeReference<List<String>>(){});

 

 

json数组字符串转字符串数组

String[] strArray = JsonUtil.fromJson( _userIdList,new TypeReference<String[]>(){});

 

 

json数组字符串转Map

Map<String, Object> jsonObj = JsonUtil.fromJson(models, Map.class);

你可能感兴趣的:(json)