English 中文(简体)
XML 是否需要名称空间?
原标题:XML Namespace is required?

我正在学习Xml和xml处理。 我无法理解名称空间的存在。

我得知,名称空间有助于我们掌握Xml中相同的名词。 难道我们能以相同名称的属性来歧视这些要素吗? 为什么名称空间重要或需要?

我想举一个例子:

<persons>
  <person></person>
  <s:person xmlns:s="student"></s:person>
  <person type="student"></person>
</persons>

第一人是正常的。 第二类使用名称空间和第三类使用特性。 我们不能使用第三种而不是第二种?

问题回答

只要你完全和完全控制你的所有XML数据,你就能够把你的物体和属性区别开来。

但考虑到这一点:你需要与第三方网络服务或数据接口相结合,在XML中传送数据。 如果这一网络服务或数据接口也实施<代码><Person>? 你们如何将自己的人与第三方所实施的可能相当不同的人类型分开?

这是XML名称空间背后的想法——它为什么要使其在全球具有独一无二的地位,从而导致使用URI(主要名称)为其使用的做法——因为“google.com”域肯定只会存在ce。 - 全球。

使用属地与名称空间之间的区别在于同属地。 举例来说,学生是下级人员。 如果你使用标签<代码>表? 数据库表和木板表是同一通用表格的吨位子级,它们完全改变了不同的概念,因此使用不同的名称空间是合理的。

当然,如果你自己提出申请,那么就不需要命名空间,但如果你再次使用XML号申请,并重新命名其XML,那么你就需要命名空间。

查阅XML名称空间





相关问题
how to represent it in dtd?

I have two element action and guid. guid is a required field when action is add. but when action is del it will not appear in file. How to represent this in dtd ?

.Net application configuration add xml-data

I need to add xml-content to my application configuration file. Is there a way to add it directly to the appSettings section or do I need to implement a configSection? Is it possible to add the xml ...

XStream serializing collections

I have a class structure that I would like to serialize with Xstream. The root class contains a collection of other objects (of varying types). I would like to only serialize part of the objects that ...

MS Word splits words in its XML format

I have a Word 2003 document saved as a XML in WordProcessingML format. It contains few placeholders which will be dynamically replaced by an appropriate content. But, the problem is that Word ...

Merging an XML file with a list of changes

I have two XML files that are generated by another application I have no control over. The first is a settings file, and the second is a list of changes that should be applied to the first. Main ...

How do I check if a node has no siblings?

I have a org.w3c.dom.Node object. I would like to see if it has any other siblings. Here s what I have tried: Node sibling = node.getNextSibling(); if(sibling == null) return true; else ...

Ordering a hash to xml: Rails

I m building an xml document from a hash. The xml attributes need to be in order. How can this be accomplished? hash.to_xml

热门标签