如何在使用 JAXB 编组时生成 1.0 以外的 XML 版本

发布于 2024-11-28 14:11:03 字数 131 浏览 1 评论 0原文

我有几个 XSD 文件和相应的 XJC 文件。使用 JAXB 生成的所有 XML 文件的版本号应该是统一的,并且应该从 XJC 或 jaxb.properties 文件中获取。我无法找到 JAXB 所指的 XML 版本号。默认情况下它生成 1.0。

I have few XSD files and corresponding XJC files. The version number of all the generated XML files using JAXB should be uniform and should be picked up from either XJC or jaxb.properties file. I am not able to find the XML version number,JAXB is referring to.By default its generating 1.0.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一页 2024-12-05 14:11:03

本质上,您需要使用 Marshaller.JAXB_FRAGMENT 属性将 JAXB Marshaller 设置为片段模式。然后自己编写 XML 标头。以下示例演示了如何通过 StAX 来完成此操作。

演示

package forum7009289;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;
import javax.xml.stream.XMLOutputFactory;
import javax.xml.stream.XMLStreamWriter;

public class Demo {

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

        Root root = new Root();

        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true);

        XMLOutputFactory xof = XMLOutputFactory.newFactory();
        XMLStreamWriter xsr = xof.createXMLStreamWriter(System.out);
        xsr.writeStartDocument("1.1");
        marshaller.marshal(root, xsr);
        xsr.writeEndDocument();
    }

}

package forum7009289;

import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class Root {

}

输出

<?xml version='1.1' encoding='UTF-8'?><root/>

Essentially you need to set the JAXB Marshaller into fragment mode using the Marshaller.JAXB_FRAGMENT property. Then write the XML header yourself. The following example demonstrates how this can be done via StAX.

Demo

package forum7009289;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;
import javax.xml.stream.XMLOutputFactory;
import javax.xml.stream.XMLStreamWriter;

public class Demo {

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

        Root root = new Root();

        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true);

        XMLOutputFactory xof = XMLOutputFactory.newFactory();
        XMLStreamWriter xsr = xof.createXMLStreamWriter(System.out);
        xsr.writeStartDocument("1.1");
        marshaller.marshal(root, xsr);
        xsr.writeEndDocument();
    }

}

Root

package forum7009289;

import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class Root {

}

Output

<?xml version='1.1' encoding='UTF-8'?><root/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文