我想使用java程序将命名空间添加到xml文件中。 那么如何使用java
将命名空间添加到xml文件中由于 BAPI
答案 0 :(得分:1)
Whit JDom
在根元素
中向xmlns添加URINamespace ns = Namespace.getNamespace("yourURI");
Element root = new Element("someName", ns);
添加任何名称空间
Namespace ns = Namespace.getNamespace("someName", "someValue");
Element yourElement = new Element("someName", ns);
root.addChild(yourElement);
Document doc = new Document(root);