オンラインの例を使用して、以下のようにDOMを使用してXMLを作成しています。
DocumentBuilderFactory docfac= DocumentBuilderFactory.newInstance();
DocumentBuilder docb= docFactory.newDocumentBuilder();
Document doc = docb.newDocument();
// root
Element rootElement = (Element)doc.createElement("TEST");
doc.appendChild(rootElement); //Compiler error
...
appenchildは、Elementオブジェクトではなく、Nodeオブジェクトを受け取ります。Nodeを使おうとしていたのですが、set属性に公開されているメソッドがないようですので、実際にはnodeを使えません。
どんな助けでも本当にありがたいです。
ありがとう。