67,549
社区成员




public User{
private Address address;
。。。。。。
}
public Address{
private List<User> users;
。。。。。。
}
JsonConfig jsonConfig = new JsonConfig();
jsonConfig.setExcludes(new String[] { "users","其他"});
JSONObject newEntityJson = JSONObject.fromObject(user,jsonConfig);