我在本地xsd文件中有一些XML和XML Schema。 XML文档不包含任何架构信息。我想在Cocoa中针对xsd模式文件验证XML文档(这意味着我更喜欢基于NS / CF / libxml而不是外部库)。
我可以跨越xmllint,这可能会有效,但我一直在寻找一种方法来实现它,而不需要启动外部任务。
答案 0 :(得分:4)
如果您的xml文档没有对xml架构的引用,则应自行添加,然后使用NSXMLDocument validateAndReturnError:
方法进行验证。
以下是如何调整xml文档以引用xsd的示例。显然,您必须调整此代码以引用本地xsd文件。
NSError *error = nil;
NSURL *xmlURL = [NSURL URLWithString:@"http://www.xmlschema.info/PO.xml"];
NSXMLDocument *document = [[NSXMLDocument alloc] initWithContentsOfURL:xmlURL options:NSXMLNodeOptionsNone error:NULL];
NSXMLNode *noNamespaceSchemaLocation = [NSXMLNode attributeWithName:@"xsi:noNamespaceSchemaLocation" stringValue:@"http://www.xmlschema.info/PO.xsd"];
NSXMLElement *rootElement = [document rootElement];
NSMutableArray *rootAttributes = [[rootElement attributes] mutableCopy];
[rootAttributes replaceObjectAtIndex:1 withObject:noNamespaceSchemaLocation];
[rootElement setAttributes:rootAttributes];
BOOL isValid = [document validateAndReturnError:&error];
if (isValid)
NSLog(@"document is valid");
else
NSLog(@"document is invalid: %@", [error localizedDescription]);
供参考:
http://www.xmlschema.info/PO.xml
的内容<?xml version="1.0"?>
<purchaseOrder orderDate="1999-10-20" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="C:\microsite_images\po.xsd">
<shipTo country="US">
<name>Alice Smith</name>
<street>123 Maple Street</street>
<city>Mill Valley</city>
<state>CA</state>
<zip>90952</zip>
</shipTo>
<billTo country="US">
<name>Robert Smith</name>
<street>8 Oak Avenue</street>
<city>Old Town</city>
<state>PA</state>
<zip>95819</zip>
</billTo>
<comment>Hurry, my lawn is going wild</comment>
<items>
<item partNum="872-AA">
<productName>Lawnmower</productName>
<quantity>1</quantity>
<USPrice>148.95</USPrice>
<comment>Confirm this is electric</comment>
</item>
<item partNum="926-AA">
<productName>Baby Monitor</productName>
<quantity>1</quantity>
<USPrice>39.98</USPrice>
<shipDate>1999-05-21</shipDate>
</item>
</items>
</purchaseOrder>
http://www.xmlschema.info/PO.xsd
的内容<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Purchase order schema for Example.com.
Copyright 2000 Example.com. All rights reserved.
</xsd:documentation>
</xsd:annotation>
<xsd:element name="purchaseOrder" type="PurchaseOrderType"/>
<xsd:element name="comment" type="xsd:string"/>
<xsd:complexType name="PurchaseOrderType">
<xsd:sequence>
<xsd:element name="shipTo" type="USAddress"/>
<xsd:element name="billTo" type="USAddress"/>
<xsd:element ref="comment" minOccurs="0"/>
<xsd:element name="items" type="Items"/>
</xsd:sequence>
<xsd:attribute name="orderDate" type="xsd:date"/>
</xsd:complexType>
<xsd:complexType name="USAddress">
<xsd:sequence>
<xsd:element name="name" type="xsd:string"/>
<xsd:element name="street" type="xsd:string"/>
<xsd:element name="city" type="xsd:string"/>
<xsd:element name="state" type="xsd:string"/>
<xsd:element name="zip" type="xsd:decimal"/>
</xsd:sequence>
<xsd:attribute name="country" type="xsd:NMTOKEN"
fixed="US"/>
</xsd:complexType>
<xsd:complexType name="Items">
<xsd:sequence>
<xsd:element name="item" minOccurs="0" maxOccurs="unbounded">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="productName" type="xsd:string"/>
<xsd:element name="quantity">
<xsd:simpleType>
<xsd:restriction base="xsd:positiveInteger">
<xsd:maxExclusive value="100"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="USPrice" type="xsd:decimal"/>
<xsd:element ref="comment" minOccurs="0"/>
<xsd:element name="shipDate" type="xsd:date" minOccurs="0"/>
</xsd:sequence>
<xsd:attribute name="partNum" type="SKU" use="required"/>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<!-- Stock Keeping Unit, a code for identifying products -->
<xsd:simpleType name="SKU">
<xsd:restriction base="xsd:string">
<xsd:pattern value="\d{3}-[A-Z]{2}"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>
答案 1 :(得分:2)
嗯,xmllint是libxml工具之一。 xmllint的XSD验证部分只是libxml架构模块的一个小包装器 - 您可以看到API here。我自己也用过Cocoa。
答案 2 :(得分:1)
纽特是对的。我有一些使用libxml XSD API的开源Cocoa代码。
项目在这里:
http://code.google.com/p/cocoatron/
特别是这种方法:
- (void)doXSDValidation:(xmlDocPtr)source;
在此文件中: