schema的小问题

<?xml version="1.0" encoding="UTF-8"?>
<person xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.example.org/1"
xsi:schemaLocation="http://www.example.org/1  1.xsd">
  <name>zhangsan</name>
  <age>20</age>
</person>
这个第二行会有错误,为什么呀

<?xml version="1.0" encoding="UTF-8"?>

<schema xmlns="http://www.w3.org/2001/XMLSchema" 

targetNamespace="http://www.example.org/1" 

elementFormDefault="qualified">

    <element name="person">

         <complexType>

              <sequence>

                   <element name="name" type="string"></element>

                   <element name="age" type="int"></element>

              </sequence>

         </complexType>

    </element>

</schema>

schema代码在这 有什么问题吗,求大神指导

1996青年
浏览 1152回答 1
1回答

1996青年

重启了一下myeclipse就好使了  谁能解释一下什么情况
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Html5