[xsl] New Line in an xml document

Subject: [xsl] New Line in an xml document
From: bharathi kongara <bharathikongara@xxxxxxxxx>
Date: Mon, 5 Jun 2006 07:57:01 -0700 (PDT)
Hey,

I'm trying to insert a new line into an xml document
directly, with the following code:

        DocumentBuilderFactory dbf =
DocumentBuilderFactory.newInstance();
        DocumentBuilder db = dbf.newDocumentBuilder();
   
        Document outputDoc = db.newDocument();
        
        // Creating the root element DOCUMENT
        Element dcmt =
outputDoc.createElement("DOCUMENT");

dcmt.appendChild(outputDoc.createTextNode("before the
newline"));
       
dcmt.appendChild(outputDoc.createTextNode("&#xA;"));
       
dcmt.appendChild(outputDoc.createTextNode("after the
new line"));
        
        outputDoc.appendChild(dcmt);

But it never inserted a newline, it only inserted the
text "&#xA;" directly! Any ideas?

Thanks,
Bharathi

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Current Thread