Answers
JSONObject net.sf.json.JSONObject.fromObject(Object object, JsonConfig jsonConfig) 这个方法,其中第二个参数是过滤器,过滤掉不需要解析的字段,过滤器这样定义
JsonConfig jsonConfig = new JsonConfig();
jsonConfig.setJsonPropertyFilter(new PropertyFilter() {
public boolean apply(Object source, String name,
Object value) {
if(name.equelse("sex")){
return true;
}
return false;
}
});
路西安卡尔兹
answered 15 years, 11 months ago