I want to add namespace to an xml file using java program. So how can I add namespace to an xml file using java
Thanks Bapi
I want to add namespace to an xml file using java program. So how can I add namespace to an xml file using java
Thanks Bapi
Whit JDom
add an URI to xmlns in root element
Namespace ns = Namespace.getNamespace("yourURI");
Element root = new Element("someName", ns);
add any namespace
Namespace ns = Namespace.getNamespace("someName", "someValue");
Element yourElement = new Element("someName", ns);
root.addChild(yourElement);
Document doc = new Document(root);