"Jason Long" writes: > Is there a way to take an element and wrap all content with <![CDATA[ > ]]> with JDOM? The content is xhtml, but I need to treat it as CDATA > for another application. Create a Writer or OutputStream. Output "<![CDATA[". Use XMLOutputter.outputElementContent to output the element's content. Output "]]>". Brad