我正在使用 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 吗?