- From: Mark Torr <Mark.Torr@eur.sas.com>
- Date: Fri, 26 May 2000 14:50:37 +0200
- To: www-dom@w3.org
I am using the DOM via a Java Server Page and need to render my output. I currently have the following code: <html> <body> <%@ page import="javax.xml.parsers.*"%> <%@ page import="org.w3c.dom.*" %> <% try { DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance (); DocumentBuilder db = dbf.newDocumentBuilder (); Document doc = db.newDocument (); Element root = doc.createElement ("mytest"); doc.appendChild (root); root.appendChild (doc.createElement ("header")); root.appendChild (doc.createTextNode ("\n some data is text\n ")); root.appendChild (doc.createElement ("footer")); } catch (Exception e) {} %> </body> </html> Can someone tell me how to get the document to write itself out? Or do I have to go through the whole tree myself?
Received on Friday, 26 May 2000 08:50:45 UTC