Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to convert org.jdom.Document to flat String in java?

share|improve this question

2 Answers

up vote 10 down vote accepted
new XMLOutputter().outputString(doc);
share|improve this answer

I got the answer myself

XMLOutputter xmOut=new XMLOutputter(); 
        System.out.println("----"+xmOut.outputString(doc));
share|improve this answer

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.