我正在使用jibx来创建一个xml。我的要求是得到如下的Xml
<report>
<info>
<meta name="acntNo">11111111</meta>
<meta name="location">USA</meta>
<meta name="Id">2222222222</meta>
</info>
</report>
我的问题是如何将名称属性添加到 complexElement元。我将从java代码中获取name属性和元文本的值。
我尝试使用
<xsd:complexType name="CareInfoType">
<xsd:sequence>
<!-- root of the meta -->
<xsd:element name="meta" type="qdx:CareMetaInfo" minOccurs="1" maxOccurs="3">
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="CareMetaInfo">
<xsd:attribute name="name" type="xsd:string" ></xsd:attribute>
</xsd:complexType>
提前致谢
答案 0 :(得分:1)
您应该使用 xsd:simpleContent 机制将属性添加到可以包含简单类型值的元素。您可以阅读tutorial here。以下是另一个例子
<强>模式强>
<xsd:complexType name="SizeType">
<xsd:simpleContent>
<xsd:extension base="xsd:integer">
<xsd:attribute name="system" type="xsd:token"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
示例强>
<size system="US-DRESS">10</size>