public void commitChanges() throws TransformerException, IOException { Transformer optimusPrime = TransformerFactory.newInstance().newTransformer(); StreamResult robot = new StreamResult(file); DOMSource truck = new DOMSource(documentRoot); optimusPrime.transform(truck, robot); }
Source: https://habr.com/ru/post/87209/
All Articles