Document doc = new Document(); Element root = new Element("root"); Namespace xmlns = Namespace.getNamespace("xsi", "http://www.gggggg"); root.addNamespaceDeclaration(xmlns); root.setNamespace(Namespace.getNamespace("http://www.kkkkkk")); Element a = new Element("a"); a.setNamespace(Namespace.NO_NAMESPACE); root.addContent(a);//root element 의 하위 element 를 만들기 a.setText("문자"); // a element에 text 넣..