Convert json string to various types

json array string to List

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

 

 

json array string to string array

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

 

 

json array string to Map

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

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326230439&siteId=291194637