我是xml的新手我有一个问题: 当我们创建一个xml文件时,实现xsd文件的行在哪里? 我的意思是我们如何获得对XML Schema的引用,我不明白 xml中没有行定义我本地计算机中xml架构的位置?
<?xml version="1.0"?>
<note
xmlns="https://www.w3schools.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://www.w3schools.com/xml/note.xsd">
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>