如何使用 XStream 忽略类型?
with XStream, how can I ignore the serialization of a defined Type (for instance, when serializing a GUI, i want to ignore all swing types)?
Or if i want to ignore all javax.* types?
Thanks in advance,
Burkhard
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要为要忽略的类型编写自定义转换器。
例如,如果您想忽略 JLabels:
并将其注册为:
you need to write a custom converter for the types you want to ignore.
For example, if you want to ignore the JLabels:
and register it with: