Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否可以使用此方法忽略字段,xstream.omitField(Class.class, "cUF");因为我有一个要忽略的字段列表,在同一个类中,我该怎么做?
xstream.omitField(Class.class, "cUF");
我在用着xStream
xStream
谢谢
也许有些字段包含空值,我遇到了同样的问题,我得出的结论是 Xstream 尝试直接访问字段值,我的意思是它不会通过 setter 或 getter 访问,在 make 之前尝试一些东西您的 xml,将字段设置为空字符串:“”
object.setField("");
如果它不起作用,请尝试在类构造函数中将字段设置为空字符串,只是尝试一下,如果在您的 XML 中使用该字段,您就会知道问题可能出在哪里。