public static void writeXmlFile(Document doc, String filename) {
try {
// Prepare the DOM document for writing
Source source = new DOMSource(doc);
// Prepare the output file
File file = new File(filename);
Result result = new StreamResult(file);
// Write the DOM document to the file
Transformer xformer = TransformerFactory.newInstance()
.newTransformer();
xformer.transform(source, result);
} catch (TransformerConfigurationException e) {
} catch (TransformerException e) {
}
}
私はこの関数を使用してxmlをファイルに書き込んでいますが、すべてうまくいきますが、最後の終了タグの直前に次のように1行追加されています。
[Mar 13 15:40:16] INFO (ConnectionController.java:342) -
私はこのクラスを使用したくないのですが、なぜこの 3 月 13 日の日付なのかわかりません
それは一般的な問題ですか?