gpt4 book ai didi

java - 使用通配符和@XmlPath来解析相似的表示

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

我有一个深层 XML 结构,其中有许多无意义的包装器,我将其映射到单个 Java 类。有几个不同的文件,其内容和结构略有不同。由于我希望能够将生成的类转换为易于比较的内容(例如,每个表示都包含一个名称),我想知道是否可以为 @XmlPath 指定通配符.

继承是我(部分)解决问题的第一个想法,但由于结构顶部有一个不同的包装元素,我不确定如何解决这个问题。

XML 结构示例

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<s:root xsi:schemaLocation="http://www.example.eu/test ResourceSchema.xsd" xmlns:s="http://www.example.eu/test" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<s:resource|s:data|s:container|s:stackoverflow>
<s:information>
<s:date>2013-07-04</s:date>
<s:name>This example does not work</s:name>
</s:information>
<s:elements>
<s:refobj>
<s:id>1</s:id>
<s:source>First Source</s:source>
</s:refobj>
<s:refobj>
<s:id>2</s:id>
<s:source>Second Source</s:source>
</s:refobj>
<s:refobj>
<s:id>5</s:id>
<s:source>Fifth Source</s:source>
</s:refobj>
</s:elements>
</s:resource|s:data|s:container|s:stackoverflow>
</s:root>

XML 中的第二个元素显然无效,尽管这是结构不同的地方并且可以包含几乎任何内容。但是,第三级元素 information 确实存在在每个结构中,它甚至包含有关 XML 中表示的元素类型的信息。

一个快速的解决方案是为每个可能的元素创建一个类,然后尝试/捕获所有元素,直到一个成功,尽管这看起来是一个可怕的解决方案。

解决此类 XML 相关问题的正确方法是什么?我无法更改结构,也无法访问架构来告诉我哪些元素具有多个名称。

最佳答案

MOXy 目前不支持 @XmlPath 中的通配符,但您可以通过下面的方法使用 StreamReaderDelegate 来实现此目的。

域模型

package forum17527941;

import java.util.Date;
import javax.xml.bind.annotation.*;
import org.eclipse.persistence.oxm.annotations.*;

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Root {

@XmlPath("s:stackoverflow/s:information/s:date/text()")
@XmlSchemaType(name="date")
private Date date = new Date();

@XmlPath("s:stackoverflow/s:information/s:name/text()")
private String name;

}

包信息

@XmlSchema(
namespace="http://www.example.eu/test",
xmlns={
@XmlNs(prefix="s", namespaceURI="http://www.example.eu/test")
},
elementFormDefault=XmlNsForm.QUALIFIED)
package forum17527941;

import javax.xml.bind.annotation.*;

演示代码

演示

package forum17527941;

import javax.xml.bind.*;
import javax.xml.stream.*;
import javax.xml.stream.util.StreamReaderDelegate;
import javax.xml.transform.stream.StreamSource;

public class Demo {

public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(Root.class);

XMLInputFactory xif = XMLInputFactory.newFactory();
StreamSource xml = new StreamSource("src/forum17527941/input.xml");
XMLStreamReader xsr = xif.createXMLStreamReader(xml);
xsr = new StreamReaderDelegate(xsr) {

@Override
public String getLocalName() {
String localName = super.getLocalName();
if("resource".equals(localName) || "data".equals(localName) || "container".equals(localName)) {
return "stackoverflow";
}
return localName;
}
};

Unmarshaller unmarshaller = jc.createUnmarshaller();
Root root = (Root) unmarshaller.unmarshal(xsr);

Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.setProperty(Marshaller.JAXB_SCHEMA_LOCATION, "http://www.example.eu/test ResourceSchema.xsd");
marshaller.marshal(root, System.out);
}

}

input.xml

通过以下输入,StreamReaderDelegate 将导致 resource 元素被报告为 stackoverflow,其匹配正在映射。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<s:root xsi:schemaLocation="http://www.example.eu/test ResourceSchema.xsd" xmlns:s="http://www.example.eu/test" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<s:resource>
<s:information>
<s:date>2013-07-04</s:date>
<s:name>This example does not work</s:name>
</s:information>
</s:resource>
</s:root>

输出

输出将与域模型中的映射匹配。

<?xml version="1.0" encoding="UTF-8"?>
<s:root xsi:schemaLocation="http://www.example.eu/test ResourceSchema.xsd" xmlns:s="http://www.example.eu/test" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<s:stackoverflow>
<s:information>
<s:date>2013-07-04</s:date>
<s:name>This example does not work</s:name>
</s:information>
</s:stackoverflow>
</s:root>

了解更多信息

关于java - 使用通配符和@XmlPath来解析相似的表示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17527941/

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