@TestpublicvoidtestArrayToJSON(){boolean[]boolArray=newboolean[]{true,false,true};JSONArrayjsonArray=JSONArray.fromObject(boolArray);System.out.println(jsonArray);//prints[true,false,true]}//Collection对象转换成JSON@TestpublicvoidtestListToJSO