String pageIdListStr = "";
Type type = new TypeToken<List<Long>>() {
}.getType();
List<Long> pageIdList = JSONObject.parseObject(pageIdListStr,type);
其他直接转不了的可以用这个反射方法,通用。
String pageIdListStr = "";
Type type = new TypeToken<List<Long>>() {
}.getType();
List<Long> pageIdList = JSONObject.parseObject(pageIdListStr,type);
其他直接转不了的可以用这个反射方法,通用。
本文标题:json如何转list
本文链接:https://www.haomeiwen.com/subject/lsafvftx.html
网友评论