How to bind a xml element into an object member variable?(如何将 xml 元素绑定到对象成员变量中?)
问题描述
我正在尝试使用 moxy 将 xml 解组为对象.下面是 xml 的示例.
I'm trying to unmarshal an xml to an object using moxy.Below is the sample of the xml.
<root>
<name>
<firstname>value</firstname>
</name>
<address>value of address</address>
</root>
下面是我要映射的类.
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import org.eclipse.persistence.oxm.annotations.XmlPath;
@XmlRootElement(name="root")
@XmlAccessorType(XmlAccessType.FIELD)
public class Response {
@XmlPath("name/firstname/text()")
String name;
Address address;
}
class Address {
String addressline;
}
现在如何获取 XML 中地址标记的值并将其绑定到类地址的地址线变量.
Now how do I get the values of the address tag in XML and bind it to the addressline variable of class Address.
推荐答案
您需要在 addressline
属性上使用 @XmlValue
注释.
You need to use the @XmlValue
annotation on the addressline
property.
@XmlAccessorType(XmlAccessType.FIELD)
class Address {
@XmlValue
String addressline;
}
这篇关于如何将 xml 元素绑定到对象成员变量中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将 xml 元素绑定到对象成员变量中?
基础教程推荐
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01