如何在 XML 中定义命名空间?
我使用 Eclipse 进行 J2EE 编程。在 HTML 代码中,我们可以通过 xmlns 属性使用 JSF(或任何其他)命名空间。使用 xmlns 属性指定命名空间后,例如 xmlns:f="..."
,当您键入 f
命名空间。
我想使用标签列表和每个标签的属性来定义自己的命名空间。
我如何定义它?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果只是命名空间,您所需要做的就是选择一个保证唯一的 URL 并将其用作命名空间。常见的约定是使用您拥有的域下的 URL,例如 http://www。 idiotguy.com/my-super-xml-namespace。
不过,命名空间本身并没有说明任何有关文档结构的信息;为此,您需要编写 DTD 或 XSD 并将文档链接到它。
If it's just the namespace, all you need to do is pick a URL that is guaranteed to be unique and use it as your namespace. A common convention is to use a URL under a domain you own, e.g. http://www.idiotguy.com/my-super-xml-namespace.
The namespace by itself doesn't say anything about the document structure though; for that, you need to write a DTD or XSD and link your document to it.