Java / XML
What is XML namespace?
XML namespace is similar to package in Java that provides a way to avoid conflict between two xml tags of same name but different sources. XML namespace is defined using xmlns attribute at top of the XML document and has following syntax xmlns:prefix=URI. That prefix is used along with actual tag in XML documents.
<root xmlns:javapedia="http://javapedia.net/javapedia-Example"> <javapedia:email> <javapedia:id>javatutorials2016@gmail.com</javapedia:id> </javapedia:email> </root>
More Related questions...