gpt4 book ai didi

java - 适用于 Marshaller setSchema 的 XML 模式

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

我很难找出简单 classes 的正确模式(以验证结构和数据类型) .例如,我可以使用 schemagen(随 JDK 提供)为 Employee 类获得答案,但仍然无法让它为 HumanResources 工作。

我正在尝试将 Employee 类实例的集合序列化为 XML。为此,我创建了 HumanResources 类,其中包含 Employee 类元素的列表。示例:

    ArrayList<Employee> ems = getTestData();
HumanResources hm = new HumanResources(ems);
SchemaFactory sf = SchemaFactory.newInstance(javax.xml.XMLConstants.W3C_XML_SCHEMA_NS_URI);
JAXBContext jaxbContext = JAXBContext.newInstance(HumanResources.class);

Marshaller marshaller = jaxbContext.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.setSchema(sf.newSchema(new File("src\\server\\HumanResources.xsd")));
marshaller.marshal( new JAXBElement<HumanResources>(
new QName(null, "HumanResources"), HumanResources.class, hm), os);

最佳答案

下面是如何使用 JAXBContext 创建 XML 模式的示例:

首先,您必须创建一个扩展 javax.xml.bind.SchemaOutputResolver 的类。

public class MySchemaOutputResolver extends SchemaOutputResolver {

public Result createOutput(String namespaceURI, String suggestedFileName) throws IOException {
File file = new File(suggestedFileName);
StreamResult result = new StreamResult(file);
result.setSystemId(file.toURI().toURL().toString());
return result;
}

}

然后将此类的实例与 JAXBContext 一起使用以捕获生成的 XML 模式。

Class[] classes = new Class[4]; 
classes[0] = org.example.customer_example.AddressType.class;
classes[1] = org.example.customer_example.ContactInfo.class;
classes[2] = org.example.customer_example.CustomerType.class;
classes[3] = org.example.customer_example.PhoneNumber.class;
JAXBContext jaxbContext = JAXBContext.newInstance(classes);

SchemaOutputResolver sor = new MySchemaOutputResolver();
jaxbContext.generateSchema(sor);

有关详细信息,请参阅:

关于java - 适用于 Marshaller setSchema 的 XML 模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4241504/

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