我有一个非类型的实体集合,并希望使用JSONSimple转换为JSON字符串。
我尝试使用JSONObject,如:
Collection entities; //supose its a non-typed Collection returned from service.
JSONObject colJSON = new JSONObject();
colJSON.put("entities",entities);
JSONValue.toJSONString(colJSON);
但是,它只返回Collection toString()方法而不是Collection的元素;