class test {
private String s;
private Date d;
}
使用setExcludes过滤不需要转换的属性
JsonConfig cfg = new JsonConfig();
cfg.setExcludes(new String[] { "d" });
原文链接:https://www.f2er.com/json/290841.htmlclass test {
private String s;
private Date d;
}
使用setExcludes过滤不需要转换的属性
JsonConfig cfg = new JsonConfig();
cfg.setExcludes(new String[] { "d" });
原文链接:https://www.f2er.com/json/290841.html