Meta
Categories
Category Archives: xml
XML Util
Convert XML document to String protected String docToString(Document doc){ String xmlStr = null; try { Transformer transformer = TransformerFactory.newInstance().newTransformer(); transformer.setOutputProperty(OutputKeys.INDENT, "yes"); StreamResult streamResult = new StreamResult(new StringWriter()); DOMSource domSrc = new DOMSource(doc); transformer.transform(domSrc,streamResult); xmlStr = streamResult.getWriter().toString(); } catch (TransformerConfigurationException e) … Continue reading
Posted in xml
Leave a comment