2

我正在使用 JAXB 生成 OpenOffice XML,并且需要将xml:space="preserve"属性应用于t元素。

    <r>
        <t>
            foo
        </t>
    </r>

应该

    <r>
        <t xml:space="preserve">
            foo
        </t>
    </r>

我使用 JAXB 从 Open Office 模式生成 Java 类。<t>type 在 CTRElt Java 类中表示为 String,因此无法设置此属性。当我从现有文档中解组并编组时,以前存在的space属性不再存在。

架构的相关部分如下:

<xsd:element name="t" type="ST_Xstring" minOccurs="1" maxOccurs="1"> <xsd:annotation> <xsd:documentation>Text</xsd:documentation> </xsd:annotation> </xsd:element>

<xsd:simpleType name="ST_Xstring"> <xsd:annotation> <xsd:documentation>Escaped String</xsd:documentation> </xsd:annotation> <xsd:restriction base="xsd:string" /> </xsd:simpleType>

如何生成具有此必需space属性的 XML?修改架构不是一种选择。我需要自定义 JAXB 吗?

4

1 回答 1

0

我最终生成了 XML 并使用正则表达式来添加属性:(

于 2012-09-13T13:07:28.973 回答