我使用xmllint –schema选项来验证我的XML,看起来像这样
<XML> <Active>True</Active> </XML>
在我的模式文件中,我有以下行描述Active元素。
<xsd:element name="Active" type="xsd:boolean" />
当我运行xmllint,我得到错误信息说
/tmp/schema_validation.xml:73: element
Active: Schemas validity error :
Element ‘Active’: ‘True’ is not a
valid value of the atomic type
‘xs:boolean’.
当我更改XML到
<Active>true</Active>
然后错误消息消失。
所以,它看起来像xsd:布尔意味着它的所有小写“真/假”,但不是“真/假”到xmllint ..我的问题是,我如何让xmllint接受“真”的xsd:布尔类型?还是有不同的工具,我可以使用,将验证这个XML?此时更改XML或模式不是我的选择。
谢谢!
你不能。
原文链接:https://www.f2er.com/xml/293714.html根据XML Schema specification,布尔值为true或false。 True无效:
3.2.2.1 Lexical representation An instance of a datatype that is defined as ·boolean· can have the following legal literals {true,false,1,0}. 3.2.2.2 Canonical representation The canonical representation for boolean is the set of literals {true,false}.
如果您使用的工具真正根据XML模式标准进行验证,那么您不能说服它接受True作为布尔值。