POLITECHNIKA RZESZOWSKA - Wydział Elektrotechniki i Informatyki
TransformerFactory tf = TransformerFactory.newInstance(); Transformer transformer = tf.newTransformer();
// obiekt document zbudowany lub z pliku oldXML.xml DOMSource source = new DOMSource(document);
FileOutputStream os = new FileOutputStream(new
File("newXML.xml");
StreamResult result = new StreamResult(os);
transformer.transform(source, result);
JAVA Wykład 11 Copyright <£> 201! Jan PROKOP 151/236