在json-lib中如何不序列化某些字段
1.在字段的定义前加上关键字transient
private transient Exep exep ;
2.调用序列化操作时:
JsonConfig jsonConfig = new JsonConfig();
jsonConfig.setIgnoreTransientFields(true);//设置为不序列化 transient的字段
String objectJson = JSONArray.fromObject(Object,jsonConfig).toString();
时间: 2024-10-11 00:07:00