Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an xml document object that I need to convert into a string.

Is there as simple way to do this?

share|improve this question
What API are you using and type is that object? – Loki Feb 3 '09 at 18:58

3 Answers

up vote 4 down vote accepted

Here's some quick code I pulled out of a library I had nearby. Might wanna dress it up, but it works:

import java.io.*;
import javax.xml.transform.*;
import javax.xml.transform.dom.*;
import javax.xml.transform.stream.*;

public String TransformDocumentToString(Document doc)
{
    DOMSource dom = new DOMSource(doc);
    StringWriter writer = new StringWriter();  
    StreamResult result = new StreamResult(writer);

    TransformerFactory factory = TransformerFactory.newInstance();
    Transformer transformer = factory.newTransformer();
    transformer.transform(dom, result);

    return writer.toString();
}

edit: as commentor noticed earlier, i had a syntax error. had to pull out some sensitive lines so I wouldn't get canned and put them back in the wrong order. thanks! ;-)

share|improve this answer
excellent... however it should be noted that you might (as I did) have an outdated version of xalan.jar, with which you will fail at the TransformerFactor.newInstance() call (even though it will not produce any errors in Eclipse). xalan-2.7.0.jar is the right version. – Dr.Dredel Feb 3 '09 at 19:46

You can use Dom4J:

OutputFormat format = OutputFormat.createPrettyPrint();
XMLWriter writer = new XMLWriter( System.out, format );
writer.write( document );
share|improve this answer

I put this in the comment, but then thought that for future reference people might find it easier if I actually added it as an answer. So... Joshua.ewer's answer is correct, but requires xalan-2.7.0.jar.

share|improve this answer
Good call. Thanks for pointing that out; I should have. – joshua.ewer Feb 3 '09 at 23:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.