6

我想做大 XML 的部分解组。

XML 具有以下结构:

<Records>
    <Contract>
        ...
    </Contract>
    <Contract>
        ...
    </Contract>
    ...
    <Contract>
        ...
    </Contract>
    <Contract>
        ...
    </Contract>
</Records>

使用 XJC 生成的结果类:

- Records
    |- Contract

如果我遵循这些(来自 jaxb-ri 的示例),我会收到错误消息:

Exception in thread "main" javax.xml.bind.UnmarshalException: unexpected element (uri:"http://somedomain.com", local:"Contract"). Expected elements are <{http://somedomain.com}Records>

如果我使用:

<jaxb:globalBindings localScoping="toplevel"/>

我得到错误:

org.xml.sax.SAXParseException: A class/interface with the same name "com.my.package.Text" is already in use. Use a class customization to resolve this conflict.

但我需要改变很多课程。这不是解决方案。

4

2 回答 2

12
/**
 * User: r.ibragimov
 * Date: 04.06.13
 */
public class PartialJAXB1 {

    public static void main(String[] args) throws JAXBException, XMLStreamException, FileNotFoundException {

        final QName qName = new QName("http://www.domain.com","Contract");

        InputStream inputStream = new FileInputStream(new File("c:\\test.xml"));

        // create xml event reader for input stream
        XMLInputFactory xmlInputFactory = XMLInputFactory.newInstance();
        XMLEventReader xmlEventReader = xmlInputFactory.createXMLEventReader(inputStream);

        // initialize jaxb
        JAXBContext context = JAXBContext.newInstance(Records.class);
        Unmarshaller unmarshaller = context.createUnmarshaller();

        XMLEvent e = null;

        // loop though the xml stream
        while( (e = xmlEventReader.peek()) != null ) {

            // check the event is a Document start element
            if(e.isStartElement() && ((StartElement)e).getName().equals(qName)) {

                // unmarshall the document
                Records.Contract contract = unmarshaller.unmarshal(xmlEventReader, Records.Contract.class).getValue();
                System.out.println(contract);
            } else {
                xmlEventReader.next();
            }

        }

    }
}
于 2013-06-05T08:31:25.990 回答
2

生成顶级类

我只想得到 Records 类和单独的 Contract 类。

默认情况下,JAXB 实现将生成与匿名复杂类型对应的类作为静态内部类。如果您希望所有内容都成为顶级课程,您可以如您在问题中所述使用以下外部绑定自定义:

<jaxb:bindings
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
    version="2.1">
    <jaxb:globalBindings localScoping="toplevel"/>
</jaxb:bindings>

解决名称冲突

我得到错误:

org.xml.sax.SAXParseException: A class/interface with the same name "com.my.package.Text

静态内部类的目的之一是防止名称冲突。对于所有顶级类,您可以使用外部绑定文件来重命名从复杂类型生成的类。下面是一个示例,其中对应于复杂类型 itemType 的类将生成为 Item。

<jaxb:bindings
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
    version="2.1">
    <jaxb:globalBindings localScoping="toplevel"/>
    <jaxb:bindings schemaLocation="company.xsd">
        <jaxb:bindings node="//xsd:element[@name='employee']/xsd:complexType/xsd:sequence/xsd:element[@name='address']/xsd:complexType">
            <jaxb:class name="EmployeeAddress"/>
        </jaxb:bindings>
    </jaxb:bindings>
</jaxb:bindings>

使用绑定文件

在 XJC 调用中使用 -b 标志指定绑定文件

xjc -b binding.xml your-schema.xsd

了解更多信息

于 2013-06-04T09:57:20.340 回答