batik to java help
hi i am new to xml and java and i wanto to creat a xml document i know how to do this with batik but i want to do this with pure java
DOMImplementation impl = DOMImplementation.getDOMImplementation();
//Create a document from the DOMImplementation
String svgNS = DOMImplementation.SVG_NAMESPACE_URI;
Document doc = impl.createDocument(svgNS, "svg", null);
Thanks in advance