Re: A quick question

The load and save module is part of DOM Level 3 and is not in DOM Level
2. For the moment, the implementations have their own API for the
serialization. Check their documentation.

Philippe

Mark Torr wrote:
> 
> 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:57:53 UTC