json用來在客戶端和服務器端之間傳輸數據很是簡潔和方便,但是如果客戶端傳輸的是對象數組的話,得做如下的處理:
- JSONArray testJSONArray=JSONArray.fromObject(testArrayStr);
- Collection testArray=JSONArray.toCollection(testJSONArray);
- if(testArray!=null && !testArray.isEmpty())
- {
- Iterator it=testArray.iterator();
- while(it.hasNext())
- {
- JSONObject testJSONObj=JSONObject.fromObject(it.next());
- Test test=(Test) JSONObject.toBean(testJSONObj,Test.class);
- ...
- }
- }
JSON包下載 http://sourceforge.net/projects/json-lib/