当 List 为空时 XStream 为空标记
使用 XStream 时,如果我尝试序列化具有空集合的 java.util.List
对象,我会得到空标记(在集合字段上)。如何删除 xml 输出中的空标签?
When using XStream, I get am empty tag(on the collection field) if I try to serialise an Object has java.util.List
collection which is empty. How to I remove that empty tag in the xml output?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的列表变量必须为 null 并且不包含空列表,以避免出现“空”标记。
编辑:
如果您希望自动完成此操作,则需要创建一个自定义转换器,请按照本教程操作:
http://x-stream.github.io/converter-tutorial.html
Your List variable must be null and not containing an empty list to avoid the 'empty' tag.
EDIT:
If you want that to be done automatically you need to create a custom converter, follow this tutorial:
http://x-stream.github.io/converter-tutorial.html