왜 XML 네임 스페이스에 URI가 필요한지 알아 내려고하는데 그 목적을 찾을 수 없습니다. 누구든지 구체적인 예에서 사용법을 조금 밝게 밝힐 수 있습니까?
편집하다:
예를 들어 좋아 : 나는 w3schools에서 이것을 가지고있다.
<root
xmlns:h="http://www.w3.org/TR/html4/"
xmlns:f="http://www.w3schools.com/furniture">
<h:table>
<h:tr>
<h:td>Apples</h:td>
<h:td>Bananas</h:td>
</h:tr>
</h:table>
<f:table>
<f:name>African Coffee Table</f:name>
<f:width>80</f:width>
<f:length>120</f:length>
</f:table>
</root>
그래서 무엇을 http://www.w3schools.com/furniture
잡아야합니까?