http://blog.csdn.net/jeffleo/article/details/73612224
FastJson的pom依賴:
com.alibabafastjson1.2.33
1
2
3
4
5
聽聞FastJson使用特別的算法患久,速度非痴恿穑快共啃,甚至快過(guò)Google的protobuf,所以選擇使用FastJson來(lái)做Json的處理夫嗓,具體產(chǎn)生Json字符串的代碼如下:
ListstudentList=newArrayList();Student student1=newStudent();student1.setId(1);ListresultNumbers=newArrayList();resultNumbers.add("12");resultNumbers.add("23");student1.setResultNumber(resultNumbers);Student student2=newStudent();student2.setId(1);ListresultNumbers2=newArrayList();resultNumbers2.add("45");resultNumbers2.add("56");student2.setResultNumber(resultNumbers);studentList.add(student1);studentList.add(student2);Mapmap=newHashMap();map.put("count",2);map.put("studentList", studentList);Stringjson=JSON.toJSONString(map,true);
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
此時(shí)的Json字符串如下所示:?
可以看見(jiàn)桐玻,這個(gè)json字符串內(nèi)有一個(gè)內(nèi)置的List
出現(xiàn)題目的cast Exception的解析方式如下:
HashMap parseMap = JSON.parseObject(json, HashMap.class);List studentList1 = (List) parseMap.get("studentList");for(Student student : studentList1){ // Exception? ? System.out.println(student.getId() +" ");}
1
2
3
4
5
debug發(fā)現(xiàn)篙挽,其實(shí)那是一個(gè)JsonObject
解決方法:?
用下面這種方式來(lái)解析List
List studentList1 = JSON.parseArray(JSON.parseObject(json).getString("studentList"), Student.class);