gpt4 book ai didi

java - X流: node with attributes and text node?

转载 作者:太空狗 更新时间:2023-10-29 22:33:51 25 4
gpt4 key购买 nike

我想使用 XStream 将对象序列化为这种形式的 XML。

<node att="value">text</node>

节点的值(text)是序列化对象上的一个字段,也是att属性。如果不为此对象编写转换器,这可能吗?

谢谢!

最佳答案

您可以使用预定义的转换器。

@XStreamAlias("node")
@XStreamConverter(value=ToAttributedValueConverter.class, strings={"text"})
class Node {
private String att;
private String text;
}

XStream Annotations Tutorial还说对于 att 属性:

Note, that no XStreamAsAttribute annotations were necessary. The converter assumes it implicitly.

关于java - X流: node with attributes and text node?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1726863/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com