本文转自

http://blog.csdn.net/hyman_xie/article/details/6253240


json用来在客户端和服务器端之间传输数据很是简洁和方便,但是如果客户端传输的是对象数组的话,得做如下的处理:

  1. JSONArray testJSONArray=JSONArray.fromObject(testArrayStr);  
  2. Collection testArray=JSONArray.toCollection(testJSONArray);  
  3. if(testArray!=null && !testArray.isEmpty())  
  4. {  
  5.     Iterator it=testArray.iterator();  
  6.     while(it.hasNext())  
  7.     {  
  8.         JSONObject testJSONObj=JSONObject.fromObject(it.next());  
  9.         Test test=(Test) JSONObject.toBean(testJSONObj,Test.class);  
  10.         ...  
  11.     }  
  12. }  
09-28 04:21