I saw the following line in an XML file:
xmlns:android="http://schemas.android.com/apk/res/android"
I have also seen xmlns in many other XML files that I've come across.
Can someone please explain what it is?
|
I saw the following line in an XML file:
I have also seen Can someone please explain what it is? |
||||
|
|
|
It defines an XML Namespace. In your example, the Namespace Prefix is "android" and the Namespace URI is "http://schemas.android.com/apk/res/android" In the document, you see elements like: Think of the namespace prefix as a variable with a short name alias for the full namespace URI. It is the equivalent of writing NOTE: You cannot actually use the full namespace URI in place of the namespace prefix in an XML instance document. Check out this tutorial on namespaces: http://www.sitepoint.com/xml-namespaces-explained/ |
||||
|
|
|
It means xml namespace. Basically, every element (or attribute) in xml belongs to a namespace, a way of "qualifying" the name of the element. Imagine you and I both invent our own xml. You invent xml to describe people, I invent mine to describe cities. Both of us include an element called "name". Yours refers to the person's name, and mine to the city name. (ok - its a little bit contrived)
If our two xmls were combined into a single document, how would we tell the two names apart? As you can see above, there are two name elements, but they both have different meanings. The answer is that you and I would both assign a namespace to our xml, which we would make unique:
Now we've fully qualified our xml, there is no ambiguity as to what each "name" element means. All of the tags that start with "personxml:" are tags belonging to your xml, all the ones that start with cityxml: are mine. There are a few points to note:
Also, element namespaces are inherited from the parent element. In other words I could equally have written the above xml as
|
|||||||||||||||||||||
|
|
There is some useful information here: http://www.w3schools.com/XML/xml_namespaces.asp |
|||
|
|
|
It's the xml namespace |
|||
|
|
|
You have name spaces so you can have globally unique elements, however 99% of the time this doesn't really matter but when you but it in the perspective of the semantic web it starts to become important. For example you could make an xml mash-up of different schemes just by using the appropriate xmlns for example mash up friend of a friend with Vcard etc. |
|||
|
|
|
|
|||
|
|
|
It stands for XML Namespace or Via Google |
|||
|
|