WebHosting

Showing posts with label xml document to string. Show all posts
Showing posts with label xml document to string. Show all posts

Tuesday, March 27, 2012

Convert xml document to string

public String DocumentToString(documentument documentument) throws doctransformerConfigurationException, doctransformerException {
        doctransformer doctransformer = doctransformerFactory.newInstance().newdoctransformer();
        doctransformer.setOutputProperty(OutputKeys.INDENT, "yes");
        Streamdocresult docresult = new Streamdocresult(new StringWriter());
        DOMSource source = new DOMSource(document);
        doctransformer.transform(source, docresult);
        String stringXml = docresult.getWriter().toString();
        return stringXml;
    }

Featured Posts

How to Enable and Configure Remote Desktop (RDP) on Ubuntu 24.04.4 LTS

Remote Desktop Protocol (RDP) support in Ubuntu has become considerably easier with the GNOME Remote Desktop stack included in modern Ubuntu...