当 List 为空时 XStream 为空标记

发布于 2024-09-27 10:08:30 字数 99 浏览 3 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眸中客 2024-10-04 10:08:30

您的列表变量必须为 null 并且不包含空列表,以避免出现“空”标记。

List list = getList();
if(list.isEmpty()) { list = null; }

// Serialization ...

编辑:

如果您希望自动完成此操作,则需要创建一个自定义转换器,请按照本教程操作:
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.

List list = getList();
if(list.isEmpty()) { list = null; }

// Serialization ...

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文