XML ファイルに何かを書き込もうとしましたが、何も書き込まれませんでした。理由はわかりません。何か助けはありますか?
これはコードです:
XMLファイルに書き込むために使用する方法は次のとおりです。
public static void writeXMLFile() throws ParserConfigurationException, FileNotFoundException, IOException
{
DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder = docFactory.newDocumentBuilder();
Document xmlDoc = docBuilder.newDocument();
/*<Drawer>
* <Shape>
* <type></type>
* <color>
* <x1>
* <y1>
* <x2>
* <y2>
*
*/
Element rootElement = xmlDoc.createElement("Drawing");
Element mainElement= xmlDoc.createElement("Shape");
mainElement.setAttribute("Color", "red");
Text shapesTypeText = xmlDoc.createTextNode("Square");
Element shapeType= xmlDoc.createElement("type");
shapeType.appendChild(shapesTypeText);
mainElement.appendChild(shapeType);
rootElement.appendChild(mainElement);
xmlDoc.adoptNode(rootElement);
OutputFormat outFormat = new OutputFormat(xmlDoc);
outFormat.setIndenting(true);
File xmlFile = new File("saved.xml");
FileOutputStream outStream = new FileOutputStream (xmlFile);
XMLSerializer serializer = new XMLSerializer(outStream,outFormat);
serializer.serialize(xmlDoc);
}
}