XML Schema 定义与调用

<?xml version="1.0" encoding="GBK"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" 
		targetNamespace="http://www.example.org/NewXMLSchema" 
		xmlns="http://www.example.org/NewXMLSchema" 
		elementFormDefault="qualified">
</xs:schema>
 
<?xml version="1.0" encoding="GBK"?>
<xxx <!-- xxx是自己定义的元素-->
	xmlns="http://www.example.org/NewXMLSchema"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	xsi:schemaLocation="http://www.example.org/NewXMLSchema NewXMLSchema.xsd">
</xxx>

猜你喜欢

转载自jmwasky.iteye.com/blog/1672301