xsl-list
[Top] [All Lists]

[xsl] New Line in an xml document

2006-06-05 07:57:35
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("
"));
       
dcmt.appendChild(outputDoc.createTextNode("after the
new line"));
        
        outputDoc.appendChild(dcmt);

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

Thanks,
Bharathi

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

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>