xsl-list
[Top] [All Lists]

Re: [xsl] New Line in an xml document

2006-06-05 08:03:57
Bharathi --

Your question does not seem to be related to XSL.

If there is an XSL-related aspect to the question please re-state the
question so that it is clear. If this is, as it seems, a question about
DocumentBuilderFactory then XSL-List in not an appropriate forum.

-- Tommie


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>
--~--


--
======================================================================
B. Tommie Usdin                        
mailto:btusdin(_at_)mulberrytech(_dot_)com
Mulberry Technologies, Inc. http://www.mulberrytech.com 17 West Jefferson Street Phone: 301/315-9631
Suite 207                                    Direct Line: 301/315-9634
Rockville, MD  20850                                 Fax: 301/315-8285
----------------------------------------------------------------------
  Mulberry Technologies: A Consultancy Specializing in XML and SGML
======================================================================

--~------------------------------------------------------------------
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>