gpt4 book ai didi

java - 如何将元素的内部文本内容映射到 Class 属性?

转载 作者:行者123 更新时间:2023-12-04 05:27:30 25 4
gpt4 key购买 nike

假设我分别有以下 XML 和 Java 代码:

<foo>
My text content
</foo>

@XmlRootElement( name="foo" )
public static class Foo
{
// This is where I want to see "My text content" stored
private String text;

// getters and setters
}

当我尝试编码 XML 时,我的 Foo实例没有使用我的 foo 的内部文本中的值填充其文本属性给定 XML 中的元素。我该如何解决这个问题?

最佳答案

您可以使用 @XmlValue注释。

@XmlValue 
public String getText() {
return text;
}

更多信息
  • http://blog.bdoughan.com/2011/06/jaxb-and-complex-types-with-simple.html
  • 关于java - 如何将元素的内部文本内容映射到 Class 属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13026825/

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