gpt4 book ai didi

java - 使用 jaxb 解码在外部 xsd 中定义的 xml 元素

转载 作者:行者123 更新时间:2023-11-30 09:30:24 25 4
gpt4 key购买 nike

我想用这个 xsd definition 解码一个 XML 文件使用 jaxb。

我已经使用 eclipse 右键单击​​生成了 java 类,生成了 jaxb 类等。我在解码 XML 文件时没有问题。

enter image description here

问题是我不知道如何取消编码(映射?)元数据类型。下面是 metadataType 的 xsd 定义和生成的类:

<complexType name="metadataType">
<annotation>
<documentation>Metadata must be expressed in XML that complies
with another XML Schema (namespace=#other). Metadata must be
explicitly qualified in the response.</documentation>
</annotation>
<sequence>
<any namespace="##other" processContents="strict"/>
</sequence>
</complexType>

为此类型生成的类是:

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2012.11.08 at 05:28:26 PM PST
//


import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlType;


/**
* Metadata must be expressed in XML that complies
* with another XML Schema (namespace=#other). Metadata must be
* explicitly qualified in the response.
*
* <p>Java class for metadataType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="metadataType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;any namespace='##other'/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "metadataType", propOrder = {
"any"
})
public class MetadataType {

@XmlAnyElement(lax = true)
protected Object any;

/**
* Gets the value of the any property.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getAny() {
return any;
}

/**
* Sets the value of the any property.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setAny(Object value) {
this.any = value;
}

}

外部 xsd 是 here

未编码的 XML 文档生成以下内容: unmarshalled XML data

更新:

此外,我还从外部生成类 xsd :

OaiDcType.java元素类型.java

那些类必须包含 MetadataType 对象的数据。

我想将 any 转换为我自己的 OaiDcType 对象,这是正确/最好的方法吗?

最佳答案

JAXBContext 不知道它找到的元素的类型时,DOM Element 是您从 any 获得的内容在 XML 中。如果您有相关元素的 JAXB 注释类并且 JAXBContext 知道这些以及顶级 OAI-PMH 类,那么该元素将自动解码到相关类和 getAny 将返回该对象而不是元素。

关于java - 使用 jaxb 解码在外部 xsd 中定义的 xml 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13309373/

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