5

使用 simple-xml 时,有没有办法让它忽略它无法识别的节点?

4

2 回答 2

4

是的。如果你用它来注释你的类,@Root(strict=false)它将忽略任何未映射的元素。有关其他详细信息,请参阅文档:

http://simple.sourceforge.net/download/stream/doc/tutorial/tutorial.php#loosemap

在相关说明中,您还可以使用@Element(required=false).

http://simple.sourceforge.net/download/stream/doc/tutorial/tutorial.php#optional

于 2013-08-13T12:55:40.970 回答
0

免责声明:如果 simple-xml 意味着除简单 XML之外的任何内容,则以下答案无关紧要

首先看一下:http ://www.w3.org/TR/xmlschema-1/#element-any

允许此类任何元素的示例模式是:

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
    <xs:element name="Root">
        <xs:complexType>
            <xs:all>
                <xs:element name="Element">
                <xs:complexType>
                    <xs:sequence minOccurs="0">
                        <xs:any processContents="lax" maxOccurs="unbounded"/>
                    </xs:sequence>
                </xs:complexType>
            </xs:element>
            </xs:all>
        </xs:complexType>
    </xs:element>
</xs:schema>

验证上述内容的示例 xml 是:

<?xml version="1.0" encoding="UTF-8"?>
<Root xsi:noNamespaceSchemaLocation="Any.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Element>
    <Root>
        <Element><Node1><SubElement/></Node1><Node2/></Element>
    </Root>
    </Element>
</Root>
于 2011-03-09T06:57:07.757 回答