我正在使用gexf.1.2模式,但是在eclipse中对其进行验证时会出现以下错误。
“ lineNumber:27; columnNumber:54; src-resolve:无法将名称'ns1:graph-content'解析为一个(n)'类型定义'组件。”
我创建了gexf.xsd文件来验证我的.gexf文件格式正确。但是,当我运行时,它显示了以上异常。 这是架构代码,错误来自最后一行。
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://www.gexf.net/1.2draft" xmlns:ns1="http://www.gexf.net/1.2draft" xmlns:viz="http://www.gexf.net/1.2draft/viz">
<xs:include schemaLocation="data.xsd"/>
<xs:include schemaLocation="dynamics.xsd"/>
<xs:include schemaLocation="hierarchy.xsd"/>
<xs:include schemaLocation="phylogenics.xsd"/>
<xs:import namespace="http://www.gexf.net/1.2draft/viz" schemaLocation="viz.xsd"/>
<xs:element name="gexf" type="ns1:gexf-content"/>
<xs:complexType name="gexf-content">
<xs:annotation>
<xs:documentation>Tree</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element minOccurs="0" ref="ns1:meta"/>
<xs:element ref="ns1:graph"/>
</xs:sequence>
<xs:attribute name="version" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="1.2"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="variant" type="xs:string"/>
</xs:complexType>
<xs:element name="meta" type="ns1:meta-content"/>
<xs:element name="graph" type="ns1:graph-content"/>