Javaによるxmlファイルの更新操作
1252 ワード
// java xml
public static void upda(Document doc) throws Exception{
// TransformerFactory
TransformerFactory tff = TransformerFactory.newInstance();
// TransformerFactory
Transformer tf = tff.newTransformer();
// Transformer transform(Source xmlSource, Result outputTarget)
// XML Source Result。
tf.transform(new DOMSource(doc), new StreamResult("src/class.xml"));
}