1 生成动态bean
String forlum="{age:12,name:\"sun\",doub:2.2,myFun:function(s,v){return this.doub;}}";
JSONObject obj=JSONObject.fromObject(forlum);
结果报错,好像是在生成动态函数function(s,v){return this.doub;}时不允许添加2个参数,请问大家,如何在动态BEAN的方法中添加2个参数
2 XML转JSON
JSONObject json=JSONObject.fromObject("{\"name\":\"json\",\"boold\":true,\"intd\":1}");
String xml=new XMLSerializer().write(json);
System.out.println(xml);
报错好像是json没引用。