Oracle® XML Developer's Kit Programmer's Guide 10g Release 2 (10.2) Part Number B14252-01 |
|
|
View PDF |
This chapter contains these topics:
This section contains the following topics:
The Oracle XML parser reads an XML document and uses DOM or SAX APIs to provide programmatic access to its content and structure. You can use the parser in validating or nonvalidating mode.
This chapter assumes that you are familiar with the following technologies:
Document Object Model (DOM). DOM is an in-memory tree representation of the structure of an XML document.
Simple API for XML (SAX). SAX is a standard for event-based XML parsing.
Java API for XML Processing (JAXP). JAXP is a standard interface for processing XML with Java applications. It supports the DOM and SAX standards.
Document Type Definition (DTD). An XML DTD defines the legal structure of an XML document.
XML Schema. Like a DTD, an XML schema defines the legal structure of an XML document.
XML Namespaces. Namespaces are a mechanism for differentiating element and attribute names.
If you require a general introduction to the preceding technologies, consult the XML resources listed in "Related Documents" of the preface.
The DOM Level 1, Level 2, and Level 3 specifications are W3C Recommendations. You can find links to the specifications for all three levels at the following URL:
http://www.w3.org/DOM/DOMTR
SAX is available in version 1.0, which is deprecated, and 2.0. It is not a W3C specification. You can find the documentation for SAX at the following URL:
http://www.saxproject.org/
XML Namespaces are a W3C Recommendation. You can find the specification at the following URL:
http://www.w3.org/TR/REC-xml-names
JAXP version 1.2 includes an XSLT framework plus some updates to the parsing API to support DOM Level 2 and SAX version 2.0 and an improved scheme to locate pluggable implementations. JAXP provides support for XML schema and an XSLT compiler. You can access the JAXP specification, which is produced by Sun Microsystems, at the following URL:
http://java.sun.com/xml/downloads/jaxp.html
XMLParser
is the abstract base class for the XML parser for Java. An instantiated parser invokes the parse()
method to read an XML document. Figure 3-1 illustrates the basic parsing process.
The following APIs provide a Java application with access to a parsed XML document:
DOM API, which parses XML documents and builds a tree representation of the documents in memory. Use a DOMParser
object to parse with DOM.
SAX API, which processes an XML document as a stream of events, which means that a program cannot access random locations in a document. Use a SAXParser
object to parse with SAX.
JAXP, which is a Java-specific API that supports DOM, SAX, and XSL. Use a DocumentBuilder
or SAXParser
object to parse with JAXP.
The sample XML document in Example 3-1 helps elucidate the differences among DOM, SAX, and JAXP.
Example 3-1 Sample XML Document
<?xml version="1.0"?> <EMPLIST> <EMP> <ENAME>MARY</ENAME> </EMP> <EMP> <ENAME>SCOTT</ENAME> </EMP> </EMPLIST>
DOM builds an in-memory tree representation of the XML document. For example, the DOM API receives the document described in Example 3-1 and creates an in-memory tree as shown in Figure 3-2. DOM provides classes and methods to navigate and process the tree.
In general, the DOM API provides the following advantages:
It is easier to use than SAX because it provides a familiar tree structure of objects.
You can perform structural manipulations of the XML tree such as reordering elements, adding to and deleting elements and attributes, and renaming elements.
Interactive applications can store the object model in memory, enabling users to access and manipulate it.
Although DOM as a standard does not support XPath, most XPath implementations use DOM. The Oracle XDK includes DOM API extensions to support XPath.
Unlike DOM, SAX is event-based, so it does not build in-memory tree representations of input documents. SAX processes the input document element by element and can report events and significant data to callback methods in the application. The XML document in Example 3-1 is parsed as a series of linear events as shown in Figure 3-2.
In general, the SAX API provides the following advantages:
It is useful for search operations and other programs that do not need to manipulate an XML tree.
It does not consume significant memory resources.
It is faster than DOM when retrieving XML documents from a database.
Figure 3-2 Comparing DOM (Tree-Based) and SAX (Event-Based) APIs
The JAXP API enables you to plug in an implementation of the SAX or DOM parser. The SAX and DOM APIs provided in the Oracle XDK are examples of vendor-specific implementations supported by JAXP.
In general, the advantage of JAXP is that you can use it to write interoperable applications. If an application uses features available through JAXP, then it can very easily switch the implementation.
The main disadvantage of JAXP is that it runs more slowly than vendor-specific APIs. In addition, several features are available through Oracle-specific APIs that are not available through JAXP APIs. Only some of the Oracle-specific features are available through the extension mechanism provided in JAXP. If an application uses these extensions, however, then the flexibility of switching implementation is lost.
The XML parser for Java can parse unqualified element types and attribute names as well as those in namespaces. Namespaces are a mechanism to resolve or avoid name collisions between element types or attributes in XML documents by providing "universal" names. Consider the XML document shown in Example 3-2.
Example 3-2 Sample XML Document Without Namespaces
<?xml version='1.0'?> <addresslist> <company> <address>500 Oracle Parkway, Redwood Shores, CA 94065 </address> </company> <!-- ... --> <employee> <lastname>King</lastname> <address>3290 W Big Beaver Troy, MI 48084 </address> </employee> <!-- ... --> </addresslist>
Without the use of namespaces, an application processing the XML document in Example 3-2 would not know whether the <address>
tag refers to a company or employee address. As shown in Example 3-3, you can use namespaces to distinguish the <address>
tags. The example declares the following XML namespaces:
http://www.oracle.com/employee http://www.oracle.com/company
Example 3-3 associates the com
prefix with the first namespace and the emp
prefix with the second namespace. Thus, an application can distinguish <com:address>
from <emp:address>
.
Example 3-3 Sample XML Document with Namespaces
<?xml version='1.0'?> <addresslist> <!-- ... --> <com:company xmlns:com="http://www.oracle.com/company"> <com:address>500 Oracle Parkway, Redwood Shores, CA 94065 </com:address> </com:company> <!-- ... --> <emp:employee xmlns:emp="http://www.oracle.com/employee"> <emp:lastname>King</emp:lastname> <emp:address>3290 W Big Beaver Troy, MI 48084 </emp:address> </emp:employee>
It is helpful to remember the following terms when parsing documents that use namespaces:
Namespace prefix, which is a namespace prefix declared with xmlns
. In Example 3-3, emp
and com
are namespace prefixes.
Local name, which is the name of an element or attribute without the namespace prefix. In Example 3-3, employee
and company
are local names.
Qualified name, which is the local name plus the prefix. In Example 3-3, emp:employee
and com:company
are qualified names.
Namespace URI, which is the URI assigned to xmlns
. In Example 3-3, http://www.oracle.com/employee
and http://www.oracle.com/company
are namespace URIs.
Expanded name, which is obtained by substituting the namespace URI for the namespace prefix. In Example 3-3, http://www.oracle.com/employee:employee
and http://www.oracle.com/company:company
are expanded element names.
Applications invoke the parse()
method to parse XML documents. Typically, applications invoke initialization and termination methods in association with the parse()
method. You can use the setValidationMode()
method defined in oracle.xml.parser.v2.XMLParser
to set the parser mode to validating or nonvalidating.
By parsing an XML document according to the rules specified in a DTD or XML schema, a validating XML parser determines whether the document conforms to a DTD to XML schema. If it conforms then the document is valid, which means that the structure of the document conforms to the DTD or schema rules. A nonvalidating parser checks for well-formedness only.
Table 3-1 shows the flags that you can use in setValidationMode()
to set the validation mode in the Oracle XDK parser.
Table 3-1 XML Parser for Java Validation Modes
In addition to setting the validation mode with setValidationMode()
, you can use the oracle.xml.parser.schema.XSDBuilder
class to build an XML schema and then configure the parser to use it by invoking the XMLParser.setXMLSchema()
method. In this case, the XML parser automatically sets the validation mode to SCHEMA_STRICT_VALIDATION
and ignores the schemaLocation
and noNamespaceSchemaLocation
attributes. You can also change the validation mode to SCHEMA_LAX_VALIDATION
. The XMLParser.setDoctype()
method is a parallel method for DTDs, but unlike setXMLSchema()
it does not alter the validation mode.
See Also: Oracle Database XML Java API Reference to learn about theXMLParser and XSDBuilder classes |
You can use the XML compressor, which is implemented in the XML parser, to compress and decompress XML documents. The compression algorithm is based on tokenizing the XML tags. The assumption is that any XML document repeats a number of tags and so tokenizing these tags gives considerable compression. The degree of compression depends on the type of document: the larger the tags and the lesser the text content, the better the compression.
The Oracle XML parser generates a binary compressed output from an in-memory DOM tree or SAX events generated from an XML document. Table 3-2 describes the two types of compression.
Table 3-2 XML Compression with DOM and SAX
Type | Description | Compression APIs |
---|---|---|
DOM-based | The goal is to reduce the size of the XML document without losing the structural and hierarchical information of the DOM tree. The parser serializes an in-memory DOM tree, corresponding to a parsed XML document, and generates a compressed XML output stream. The serialized stream regenerates the DOM tree when read back. | Use the writeExternal() method to generate compressed XML and the readExternal() method to reconstruct it. The methods are in the oracle.xml.parser.v2.XMLDocument class. |
SAX-based | The SAX parser generates a compressed stream when it parses an XML file. SAX events generated by the SAX parser are handled by the SAX compression utility, which generates a compressed binary stream. When the binary stream is read back, the SAX events are generated. | To generate compressed XML, instantiate oracle.xml.comp.CXMLHandlerBase by passing an output stream to the constructor. Pass the object to SAXParser.setContentHandler() and then execute the parse() method. Use the oracle.xml.comp.CXMLParser class to decompress the XML.
Note: |
The compressed streams generated from DOM and SAX are compatible, that is, you can use the compressed stream generated from SAX to generate the DOM tree and vice versa. As with XML documents in general, you can store the compressed XML data output in the database as a BLOB
.
When a program parses a large XML document and creates a DOM tree in memory, it can affect performance. You can compress an XML document into a binary stream by serializing the DOM tree. You can regenerate the DOM tree without validating the XML data in the compressed stream. You can treat the compressed stream as a serialized stream, but the data in the stream is more controlled and managed than the compression implemented by Java's default serialization.
Note: Oracle Text cannot search a compressed XML document. Decompression reduces performance. If you are transferring files between client and server, then HTTP compression can be easier. |
The fundamental component of any XML development is the XML parser. The XML parser for Java is a standalone XML component that parses an XML document (and possibly also a standalone DTD or XML Schema) so that your program can process it. This section contains the following topics:
Figure 3-3 shows how to use the XML parser in a typical XML processing application.
The basic process of the application shown in Figure 3-3 is as follows:
The DOM or SAX parser parses input XML documents. For example, the program can parse XML data documents, DTDs, XML schemas, and XSL stylesheets.
If you implement a validating parser, then the processor attempts to validate the XML data document against any supplied DTDs or XML schemas.
Demo programs for the XML parser for Java are included in $ORACLE_HOME/xdk/demo/java/parser
. The demo programs are distributed among the subdirectories described in Table 3-3.
Table 3-3 Java Parser Demos
Directory | Contents | These programs ... |
---|---|---|
common |
class.xml DemoUtil.java empl.xml family.dtd family.xml iden.xsl NSExample.xml traversal.xml |
Provide XML files and Java programs for general use with the XML parser. For example, you can use the XSLT stylesheet iden.xsl to achieve an identity transformation of the XML files. DemoUtil.java implements a helper method to create a URL from a file name. This method is used by many of the other demo programs. |
comp |
DOMCompression.java DOMDeCompression.java SAXCompression.java SAXDeCompression.java SampleSAXHandler.java sample.xml xml.ser |
Illustrate DOM and SAX compression:
|
dom |
AutoDetectEncoding.java DOM2Namespace.java DOMNamespace.java DOMRangeSample.java DOMSample.java EventSample.java I18nSafeXMLFileWritingSample.java NodeIteratorSample.java ParseXMLFromString.java TreeWalkerSample.java |
Illustrate uses of the DOM API:
|
jaxp |
JAXPExamples.java age.xsl general.xml jaxpone.xml jaxpone.xsl jaxpthree.xsl jaxptwo.xsl oraContentHandler.java |
Illustrate various uses of the JAXP API:
|
sax |
SAX2Namespace.java SAXNamespace.java SAXSample.java Tokenizer.java |
Illustrate various uses of the SAX APIs:
|
xslt |
XSLSample.java XSLSample2.java match.xml match.xsl math.xml math.xsl number.xml number.xsl position.xml position.xsl reverse.xml reverse.xsl string.xml string.xsl style.txt variable.xml variable.xsl |
Illustrate the transformation of documents with XSLT:
|
Documentation for how to compile and run the sample programs is located in the README. The basic steps are as follows:
Change into the $ORACLE_HOME/xdk/demo/java/parser
directory (UNIX) or %ORACLE_HOME%\xdk\demo\java\parser
directory (Windows).
Set up your environment as described in "Setting Up the Java XDK Environment".
Change into each of the following subdirectories and run make
(UNIX) or Make.bat
(Windows) at the command line. For example:
cd comp;make;cd .. cd jaxp;make;cd .. cd sax;make;cd .. cd dom;make;cd .. cd xslt;make;cd ..
The make file compiles the source code in each directory, runs the programs, and writes the output for each program to a file with an *.out
extension.
You can view the *.out
files to view the output for the programs.
The oraxml
utility, which is located in $ORACLE_HOME/bin
(UNIX) or %ORACLE_HOME%\bin
(Windows), is a command-line interface that parses XML documents. It checks for both well-formedness and validity.
To use oraxml
ensure that the following is true:
Your CLASSPATH
is set up as described in "Setting Up the Java XDK Environment". In particular, make sure you CLASSPATH
environment variable points to the xmlparserv2.jar
file.
Your PATH
environment variable can find the Java interpreter that comes with the version of the JDK that you are using.
Table 3-4 lists the oraxml
command-line options.
Table 3-4 oraxml Command-Line Options
Option | Purpose |
---|---|
-help |
Prints the help message |
-version |
Prints the release version |
-novalidate fileName |
Checks whether the input file is well-formed |
-dtd fileName |
Validates the input file with DTD Validation |
-schema fileName |
Validates the input file with Schema Validation |
-log logfile |
Writes the errors to the output log file |
-comp fileName |
Compresses the input XML file |
-decomp fileName |
Decompresses the input compressed file |
-enc fileName |
Prints the encoding of the input file |
-warning |
Show warnings |
For example, change into the $ORACLE_HOME/xdk/demo/java/parser/common
directory. You can validate the document family.xml
against family.dtd
by executing the following on the command line:
oraxml -dtd -enc family.xml
The output should appear as follows:
The encoding of the input file: UTF-8The input XML file is parsed without errors using DTD validation mode.
The W3C standard library org.w3c.dom
defines the Document
class as well as classes for the components of a DOM. The Oracle XML parser includes the standard DOM APIs and is compliant with the W3C DOM recommendation. Along with org.w3c.dom
, the Oracle XML parser includes classes that implement the DOM APIs and extend them to provide features such as printing document fragments and retrieving namespace information.
This section contains the following topics:
To implement DOM-based components in your XML application you can use the following XDK classes:
oracle.xml.parser.v2.XMLParser
. This class serves as a base class for the DOMParser
and SAXParser
classes. It contains methods to parse XML 1.0 documents according to the W3C recommendation. Note that this class cannot be instantiated. Applications may use the DOM or SAX parser depending on their requirements.
oracle.xml.parser.v2.DOMParser
. This class implements an XML 1.0 parser according to the W3C recommendation. Because DOMParser
extends XMLParser
, all methods of XMLParser
are available to DOMParser
.
You can also make use of the DOMNamespace
and DOM2Namespace
classes, which are sample programs included in $ORACLE_HOME/xdk/demo/java/parser/dom
.
Figure 3-4 illustrates how to create a parser and use it to access a DOM representation of an input document.
The basic stages for parsing an input XML document and accessing it through a DOM are as follows:
Create a DOMParser
object by calling the DOMParser()
constructor. You can use this parser to parse input XML data documents as well as DTDs.
Configure parser properties. Table 3-5 lists useful configuration methods.
Table 3-5 DOMParser Configuration Methods
Method | Use this method to . . . |
---|---|
setBaseURL() |
Set the base URL for loading external entities and DTDs. Call this method if the XML document is an InputStream . |
setDoctype() |
Specify the DTD to use when parsing. |
setErrorStream() |
Create an output stream for the output of errors and warnings. |
setPreserveWhitespace() |
Instruct the parser to preserve the whitespace in the input XML document. |
setValidationMode() |
Set the validation mode of the parser. Table 3-1 describes the flags that you can use with this method. |
showWarnings() |
Specify whether the parser should print warnings. |
Parse the input document by invoking the parse()
method. The program builds a tree of Node
objects in memory.
Invoke getDocument()
to request that the parser should return a handle to the root of the in-memory DOM tree, which is an XMLDocument
object. You can use this handle to access every part of the parsed XML document. The XMLDocument
class implements the interfaces shown in Table 3-6.
Table 3-6 Some Interfaces Implemented by XMLDocument
Interface | Defines . . . |
---|---|
org.w3c.dom.Node |
A single node in the document tree and methods to access and process the node. |
org.w3c.dom.Document |
A Node that represents the entire XML document. |
org.w3c.dom.Element |
A Node that represents an XML element. |
Obtain and manipulate DOM nodes of the retrieved document by calling various XMLDocument
methods. You can use DOMParser.print()
method to print the DOM tree. Table 3-7 lists some useful methods for obtaining nodes.
Table 3-7 Useful XMLDocument Methods
Method | Use this method to . . . |
---|---|
getAttributes() |
Generate a NamedNodeMap containing the attributes of this node (if it is an element) or null otherwise. |
getElementsbyTagName() |
Retrieve recursively all elements that match a given tag name under a certain level. This method supports the * tag, which matches any tag. Call getElementsByTagName("*") through the handle to the root of the document to generate a list of all elements in the document. |
getExpandedName() |
Obtain the expanded name of the element. This method is specified in the NSName interface. |
getLocalName() |
Obtain the local name for this element. If an element name is <E1:locn xmlns:E1="http://www.oracle.com/"/> , then locn is the local name. |
getNamespaceURI() |
Obtain the namespace URI of this node, or null if it is unspecified. If an element name is <E1:locn xmlns:E1="http://www.oracle.com/"/> , then http://www.oracle.com is the namespace URI. |
getNodeName() |
Obtain the name of a node in the DOM tree. |
getNodeValue() |
Obtain the value of this node, depending on its type. This mode is in the Node interface. |
getPrefix() |
Obtain the namespace prefix for an element. |
getQualifiedName() |
Obtain the qualified name for an element. If an element name is <E1:locn xmlns:E1="http://www.oracle.com/"/> , then E1:locn is the qualified name.. |
getTagName() |
Obtain the name of an element in the DOM tree. |
Reset the parser state by invoking the reset()
method. The parser is now ready to parse a new document.
The DOMSample.java
program illustrates the basic steps of DOM parsing. The program receives an XML file as input, parses it, and prints the elements and attributes in the DOM tree.
The program follows these steps:
Create a new DOMParser()
object. The following code fragment from DOMSample.java
illustrates this technique:
DOMParser parser = new DOMParser();
Configure the parser. The following code fragment from DOMSample.java
specifies the error output stream, sets the validation mode to DTD validation, and enables warning messages:
parser.setErrorStream(System.err); parser.setValidationMode(DOMParser.DTD_VALIDATION); parser.showWarnings(true);
Parse the input XML document. The following code fragment from DOMSample.java
shows how to parse an instance of the java.net.URL
class:
parser.parse(url);
Note that the XML input can be a file, string buffer, or URL. As illustrated by the following code fragment, DOMSample.java
accepts a filename as a parameter and calls the createURL
helper method to construct a URL object that can be passed to the parser:
public class DOMSample { static public void main(String[] argv) { try { if (argv.length != 1) { // Must pass in the name of the XML file. System.err.println("Usage: java DOMSample filename"); System.exit(1); } ... // Generate a URL from the filename. URL url = DemoUtil.createURL(argv[0]); ...
Obtain a handle to the root of the in-memory DOM tree. You can use the XMLDocument
object to access every part of the parsed XML document. The following code fragment from DOMSample.java
illustrates this technique:
XMLDocument doc = parser.getDocument();
Print the elements and attributes of the DOM tree. The following code fragment from DOMSample.java
illustrates this technique:
System.out.print("The elements are: "); printElements(doc); System.out.println("The attributes of each element are: "); printElementAttributes(doc);
The program implements the printElements()
method, which calls getElementsByTagName()
to obtain a list of all the elements in the DOM tree. It then loops through each item in the list and calls getNodeName()
to print the name of each element:
static void printElements(Document doc) { NodeList nl = doc.getElementsByTagName("*"); Node n; for (int i=0; i<nl.getLength(); i++) { n = nl.item(i); System.out.print(n.getNodeName() + " "); } System.out.println(); }
The program implements the printElementAttributes()
method, which calls Document.getElementsByTagName()
to obtain a list of all the elements in the DOM tree. It then loops through each element in the list and calls Element.getAttributes()
to obtain the list of attributes for the element. It then calls Node.getNodeName()
to obtain the attribute name and Node.getNodeValue()
to obtain the attribute value:
static void printElementAttributes(Document doc) { NodeList nl = doc.getElementsByTagName("*"); Element e; Node n; NamedNodeMap nnm; String attrname; String attrval; int i, len; len = nl.getLength(); for (int j=0; j < len; j++) { e = (Element)nl.item(j); System.out.println(e.getTagName() + ":"); nnm = e.getAttributes(); if (nnm != null) { for (i=0; i<nnm.getLength(); i++) { n = nnm.item(i); attrname = n.getNodeName(); attrval = n.getNodeValue(); System.out.print(" " + attrname + " = " + attrval); } } System.out.println(); } }
The DOM2Namespace.java
program illustrates a simple use of the parser and Namespace extensions to the DOM APIs. The programs receives an XML document, parses it, and prints the elements and attributes in the document.
The initial four steps of the "Performing Basic DOM Parsing", from parser creation to the getDocument()
call, are basically the same as for DOM2Namespace.java
. The principal difference is in the step for printing the DOM tree, which is step 5. The DOM2Namespace.java
program does the following instead:
// Print document elements printElements(doc); // Print document element attributes System.out.println("The attributes of each element are: "); printElementAttributes(doc);
The printElements()
method implemented by DOM2Namespace.java
calls getElementsByTagName()
to obtain a list of all the elements in the DOM tree. It then loops through each item in the list and casts each Element
to an nsElement
. For each nsElement
it calls nsElement.getPrefix()
to get the namespace prefix, nsElement.getLocalName()
to get the local name, and nsElement.getNamespaceURI()
to get the namespace URI:
static void printElements(Document doc) { NodeList nl = doc.getElementsByTagName("*"); Element nsElement; String prefix; String localName; String nsName; System.out.println("The elements are: "); for (int i=0; i < nl.getLength(); i++) { nsElement = (Element)nl.item(i); prefix = nsElement.getPrefix(); System.out.println(" ELEMENT Prefix Name :" + prefix); localName = nsElement.getLocalName(); System.out.println(" ELEMENT Local Name :" + localName); nsName = nsElement.getNamespaceURI(); System.out.println(" ELEMENT Namespace :" + nsName); } System.out.println(); }
The printElementAttributes()
method calls Document.getElementsByTagName()
to obtain a NodeList
of the elements in the DOM tree. It then loops through each element and calls Element.getAttributes()
to obtain the list of attributes for the element as special list called a NamedNodeMap
. For each item in the attribute list it calls nsAttr.getPrefix()
to get the namespace prefix, nsAttr.getLocalName()
to get the local name, and nsAttr.getValue()
to obtain the value:
static void printElementAttributes(Document doc) { NodeList nl = doc.getElementsByTagName("*"); Element e; Attr nsAttr; String attrpfx; String attrname; String attrval; NamedNodeMap nnm; int i, len; len = nl.getLength(); for (int j=0; j < len; j++) { e = (Element) nl.item(j); System.out.println(e.getTagName() + ":"); nnm = e.getAttributes(); if (nnm != null) { for (i=0; i < nnm.getLength(); i++) { nsAttr = (Attr) nnm.item(i); attrpfx = nsAttr.getPrefix(); attrname = nsAttr.getLocalName(); attrval = nsAttr.getNodeValue(); System.out.println(" " + attrpfx + ":" + attrname + " = " + attrval); } } System.out.println(); } }
The EventSample.java
program shows how to register various events with an event listener. For example, if a node is added to a specified DOM element, an event is triggered, which causes the listener to print information about the event.
The program follows these steps:
Instantiate an event listener. When a registered change triggers an event, this event is passed to the event listener, which handles it. The following code fragment from EventSample.java
shows the implementation of the listener:
eventlistener evtlist = new eventlistener(); ... class eventlistener implements EventListener { public eventlistener(){} public void handleEvent(Event e) { String s = " Event "+e.getType()+" received " + "\n"; s += " Event is cancelable :"+e.getCancelable()+"\n"; s += " Event is bubbling event :"+e.getBubbles()+"\n"; s += " The Target is " + ((Node)(e.getTarget())).getNodeName() + "\n\n"; System.out.println(s); } }
Instantiate a new XMLDocument
and then call getImplementation()
to retrieve a DOMImplementation
object. You can call the hasFeature()
method to determine which features are supported by this implementation. The following code fragment from EventSample.java
illustrates this technique:
XMLDocument doc1 = new XMLDocument(); DOMImplementation impl = doc1.getImplementation(); System.out.println("The impl supports Events "+ impl.hasFeature("Events", "2.0")); System.out.println("The impl supports Mutation Events "+ impl.hasFeature("MutationEvents", "2.0"));
Register desired events with the listener. The following code fragment from EventSample.java
registers three events on the document node:
doc1.addEventListener("DOMNodeRemoved", evtlist, false); doc1.addEventListener("DOMNodeInserted", evtlist, false); doc1.addEventListener("DOMCharacterDataModified", evtlist, false);
The following code fragment from EventSample.java
creates a node of type XMLElement
and then registers three events on this node:
XMLElement el = (XMLElement)doc1.createElement("element"); ... el.addEventListener("DOMNodeRemoved", evtlist, false); el.addEventListener("DOMNodeRemovedFromDocument", evtlist, false); el.addEventListener("DOMCharacterDataModified", evtlist, false); ...
Perform actions that trigger events, which are then passed to the listener for handling. The following code fragment from EventSample.java
illustrates this technique:
att.setNodeValue("abc"); el.appendChild(el1); el.appendChild(text); text.setNodeValue("xyz"); doc1.removeChild(el);
According to the W3C DOM specification, a range identifies a range of content in a Document
, DocumentFragment
, or Attr
. It selects the content between a pair of boundary-points that correspond to the start and the end of the range. Table 3-8 describes useful range methods accessible through XMLDocument
.
Table 3-8 Useful Methods in the Range Class
Method | Description |
---|---|
cloneContents() |
Duplicates the contents of a range |
deleteContents() |
Deletes the contents of a range |
getCollapsed() |
Returns TRUE is the range is collapsed |
getEndContainer() |
Obtains the node within which the range ends |
getStartContainer() |
Obtains the node within which the range begins |
selectNode() |
Selects a node and its contents |
selectNodeContents() |
Selects the contents within a node |
setEnd() |
Sets the attributes describing the end of a range |
setStart() |
Sets the attributes describing the beginning of a range |
The DOMRangeSample.java
program illustrates some of the things that you can do with ranges.
The initial four steps of the "Performing Basic DOM Parsing", from parser creation to the getDocument()
call, are the same as for DOMRangeSample.java
. The DOMRangeSample.java
program then proceeds by following these steps:
After calling getDocument()
to create the XMLDocument
, create a range object with createRange()
and call setStart()
and setEnd()
to set its boundaries. The following code fragment from DOMRangeSample.java
illustrates this technique:
XMLDocument doc = parser.getDocument(); ... Range r = (Range) doc.createRange(); XMLNode c = (XMLNode) doc.getDocumentElement(); // set the boundaries r.setStart(c,0); r.setEnd(c,1);
Call XMLDocument
methods to obtain information about the range and manipulate its contents. Table 3-8 describes useful methods. The following code fragment from DOMRangeSample.java
selects the contents of the current node and prints it:
r.selectNodeContents(c); System.out.println(r.toString());
The following code fragment clones a range contents and prints it:
XMLDocumentFragment df =(XMLDocumentFragment) r.cloneContents(); df.print(System.out);
The following code fragment obtains and prints the start and end containers for the range:
c = (XMLNode) r.getStartContainer(); System.out.println(c.getText()); c = (XMLNode) r.getEndContainer(); System.out.println(c.getText());
Only some of the features of the demo program are described in this section. For more detail, refer to the demo program itself.
The W3C DOM Level 2 Traversal and Range specification defines the NodeFilter
and TreeWalker
interfaces. The XDK includes implementations of these interfaces.
A node filter is an object that can filter out certain types of Node
objects. For example, it can filter out entity reference nodes but accept element and attribute nodes. You create a node filter by implementing the NodeFilter
interface and then passing a Node
object to the acceptNode()
method. Typically, the acceptNode()
method implementation calls getNodeType()
to obtain the type of the node and compares it to static variables such as ELEMENT_TYPE
, ATTRIBUTE_TYPE
, and so forth, and then returns one of the static fields in Table 3-9 based on what it finds.
Table 3-9 Static Fields in the NodeFilter Interface
Method | Description |
---|---|
FILTER_ACCEPT |
Accept the node. Navigation methods defined for NodeIterator or TreeWalker will return this node. |
FILTER_REJECT |
Rejects the node. Navigation methods defined for NodeIterator or TreeWalker will not return this node. For TreeWalker , the children of this node will also be rejected. NodeIterators treat this as a synonym for FILTER_SKIP . |
FILTER_SKIP |
Skips this single node. Navigation methods defined for NodeIterator or TreeWalker will not return this node. For both NodeIterator and TreeWalker , the children of this node will still be considered. |
You can use TreeWalker
objects to traverse a document tree or subtree using the view of the document defined by their whatToShow
flags and filters (if any). You can use the XMLDocument.createTreeWalker()
method to create a TreeWalker
object by specifying the following:
A root node for the tree
A flag that governs the type of nodes it should include in the logical view
A filter for filtering nodes
A flag that determines whether entity references and their descendents should be included
Table 3-10 describes useful methods in the org.w3c.dom.traversal.TreeWalker
interface.
Table 3-10 Useful Methods in the TreeWalker Interface
Method | Description |
---|---|
firstChild() |
Moves the tree walker to the first visible child of the current node and returns the new node. If the current node has no visible children, then it returns null and retains the current node. |
getRoot() |
Obtains the root node of the tree walker as specified when it was created. |
lastChild() |
Moves the tree walker to the last visible child of the current node and returns the new node. If the current node has no visible children, then it returns null and retains the current node. |
nextNode() |
Moves the tree walker to the next visible node in document order relative to the current node and returns the new node. |
The TreeWalkerSample.java
program illustrates some of the things that you can do with node filters and tree traversals.
The initial four steps of the "Performing Basic DOM Parsing", from parser creation to the getDocument()
call, are the same as for TreeWalkerSample.java
. The TreeWalkerSample.java
program then proceeds by following these steps:
Create a node filter object. The acceptNode()
method in the ns
class, which implements the NodeFilter
interface, invokes getNodeType()
to obtain the type of node. The following code fragment from TreeWalkerSample.java
illustrates this technique:
NodeFilter n2 = new nf(); ... class nf implements NodeFilter { public short acceptNode(Node node) { short type = node.getNodeType(); if ((type == Node.ELEMENT_NODE) || (type == Node.ATTRIBUTE_NODE)) return FILTER_ACCEPT; if ((type == Node.ENTITY_REFERENCE_NODE)) return FILTER_REJECT; return FILTER_SKIP; } }
Invoke the XMLDocument.createTreeWalker()
method to create a tree walker. The following code fragment from TreeWalkerSample.java
uses the root node of the XMLDocument
as the root node of the tree walker and includes all nodes in the tree:
XMLDocument doc = parser.getDocument(); ... TreeWalker tw = doc.createTreeWalker(doc.getDocumentElement(),NodeFilter.SHOW_ALL,n2,true);
Obtain the root element of the TreeWalker
object. The following code fragment illustrates this technique:
XMLNode nn = (XMLNode)tw.getRoot();
Traverse the tree. The following code fragment illustrates how to walk the tree in document order by calling the TreeWalker.nextNode()
method:
while (nn != null) { System.out.println(nn.getNodeName() + " " + nn.getNodeValue()); nn = (XMLNode)tw.nextNode(); }
The following code fragment illustrates how to walk the tree the left depth of the tree by calling the firstChild()
method (you can traverse the right depth of the tree by calling the lastChild()
method):
while (nn != null) { System.out.println(nn.getNodeName() + " " + nn.getNodeValue()); nn = (XMLNode)tw.firstChild(); }
Only some of the features of the demo program are described in this section. For more detail, refer to the demo program itself.
SAX is a standard interface for event-based XML parsing. This section contains the following topics:
The SAX API, which is released in a Level 1 and Level 2 versions, is a set of interfaces and classes. We can divide the API into the following categories:
Interfaces implemented by the Oracle XML parser.
Interfaces that you must implement in your application. The SAX 2.0 interfaces are listed in Table 3-11.
Table 3-11 SAX2 Handler Interfaces
Interface | Description |
---|---|
ContentHandler |
Receives notifications from the XML parser. The major event-handling methods are startDocument() , endDocument() , startElement() , and endElement() when it recognizes an XML tag. This interface also defines the methods characters() and processingInstruction() , which are invoked when the parser encounters the text in an XML element or an inline processing instruction. |
DeclHandler |
Receives notifications about DTD declarations in the XML document. |
DTDHandler |
Processes notations and unparsed (binary) entities. |
EntityResolver |
Needed to perform redirection of URIs in documents. The resolveEntity() method is invoked when the parser must identify data identified by a URI. |
ErrorHandler |
Handles parser errors. The program invokes the methods error() , fatalError() , and warning() in response to various parsing errors. |
LexicalHandler |
Receives notifications about lexical information such as comments and CDATA section boundaries. |
Standard SAX classes.
Additional Java classes in org.xml.sax.helper
. The SAX 2.0 helper classes are as follows:
AttributeImpl
, which makes a persistent copy of an AttributeList
DefaultHandler
, which is a base class with default implementations of the SAX2 handler interfaces listed in Table 3-11
LocatorImpl
, which makes a persistent snapshot of a Locator's values at specified point in the parse
NamespaceSupport
, which adds support for XML namespaces
XMLFilterImpl
, which is a base class used by applications that need to modify the stream of events
XMLReaderFactory
, which supports loading SAX parsers dynamically
Demonstration classes in the nul
package.
Figure 3-5 illustrates how to create a SAX parser and use it to parse an input document.
The basic stages for parsing an input XML document with SAX are as follows:
Create a SAXParser
object and configure its properties (see Table 3-5 for useful property methods). For example, set the validation mode of the parser.
Instantiate an event handler. The program should provide implementations of the handler interfaces in Table 3-11.
Register the event handlers with the parser. You must register your event handlers with the parser so that it knows which methods to invoke when a given event occurs. Table 3-12 lists registration methods available in SAXParser
.
Table 3-12 SAXParser Methods for Registering Event Handlers
Method | Use this method to . . . |
---|---|
setContentHandler() |
Register a content event handler with an application. The org.xml.sax.DefaultHandler class implements the org.xml.sax.ContentHandler interface. Applications can register a new or different handler in the middle of a parse; the SAX parser must begin using the new handler immediately. |
setDTDHandler() |
Register a DTD event handler. If the application does not register a DTD handler, all DTD events reported by the SAX parser are silently ignored. Applications may register a new or different handler in the middle of a parse; the SAX parser must begin using the new handler immediately. |
setErrorHandler() |
Register an error event handler with an application. If the application does not register an error handler, all error events reported by the SAX parser are silently ignored; however, normal processing may not continue. It is highly recommended that all SAX applications implement an error handler to avoid unexpected bugs. Applications may register a new or different handler in the middle of a parse; the SAX parser must begin using the new handler immediately. |
setEntityResolver() |
Register an entity resolver with an application. If the application does not register an entity resolver, the XMLReader performs its own default resolution. Applications may register a new or different resolver in the middle of a parse; the SAX parser must begin using the new resolver immediately. |
Parse the input document with the SAXParser.parse()
method. All SAX interfaces are assumed to be synchronous: the parse method must not return until parsing is complete. Readers must wait for an event-handler callback to return before reporting the next event.
When the SAXParser.parse()
method is called, the program invokes one of several callback methods implemented in the application. The methods are defined by the ContentHandler
, ErrorHandler
, DTDHandler
, and EntityResolver
interfaces implemented in the event handler. For example, the application can call the startElement()
method when a start element is encountered.
The SAXSample.java
program illustrates the basic steps of SAX parsing. The SAXSample
class extends HandlerBase
. The program receives an XML file as input, parses it, and prints information about the contents of the file.
The program follows these steps:
Store the Locator
. The Locator
associates a SAX event with a document location. The SAX parser provides location information to the application by passing a Locator
instance to the setDocumentLocator()
method in the content handler. The application can use the object to obtain the location of any other content handler event in the XML source document. The following code fragment from SAXSample.java
illustrates this technique:
Locator locator;
Instantiate a new event handler. The following code fragment from SAXSample.java
illustrates this technique:
SAXSample sample = new SAXSample();
Instantiate the SAX parser and configure it. The following code fragment from SAXSample.java
sets the mode to DTD validation:
Parser parser = new SAXParser(); ((SAXParser)parser).setValidationMode(SAXParser.DTD_VALIDATION);
Register event handlers with the SAX parser. You can use the registration methods in the SAXParser
class, but you must implement the handler interfaces yourself. The following code fragment registers the handlers:
parser.setDocumentHandler(sample); parser.setEntityResolver(sample); parser.setDTDHandler(sample); parser.setErrorHandler(sample);
The following code shows some of the DocumentHandler
interface implementation:
public void setDocumentLocator (Locator locator) { System.out.println("SetDocumentLocator:"); this.locator = locator; } public void startDocument() { System.out.println("StartDocument"); } public void endDocument() throws SAXException { System.out.println("EndDocument"); } public void startElement(String name, AttributeList atts) throws SAXException { System.out.println("StartElement:"+name); for (int i=0;i<atts.getLength();i++) { String aname = atts.getName(i); String type = atts.getType(i); String value = atts.getValue(i); System.out.println(" "+aname+"("+type+")"+"="+value); } } ...
The following code shows the EntityResolver
interface implementation:
public InputSource resolveEntity (String publicId, String systemId) throws SAXException { System.out.println("ResolveEntity:"+publicId+" "+systemId); System.out.println("Locator:"+locator.getPublicId()+" locator.getSystemId()+ " "+locator.getLineNumber()+" "+locator.getColumnNumber()); return null; }
The following code shows the DTDHandler
interface implementation:
public void notationDecl (String name, String publicId, String systemId) { System.out.println("NotationDecl:"+name+" "+publicId+" "+systemId); } public void unparsedEntityDecl (String name, String publicId, String systemId, String notationName) { System.out.println("UnparsedEntityDecl:"+name + " "+publicId+" "+ systemId+" "+notationName); }
The following code shows the ErrorHandler
interface implementation:
public void warning (SAXParseException e) throws SAXException { System.out.println("Warning:"+e.getMessage()); } public void error (SAXParseException e) throws SAXException { throw new SAXException(e.getMessage()); } public void fatalError (SAXParseException e) throws SAXException { System.out.println("Fatal error"); throw new SAXException(e.getMessage()); }
Parse the input XML document. The following code fragment converts the document to a URL and then parses it:
parser.parse(DemoUtil.createURL(argv[0]).toString());
This section discusses the SAX2Namespace.java
sample program, which implements an event handler named XMLDefaultHandler
as a subclass of the org.xml.sax.helpers.DefaultHandler
class. The easiest way to implement the ContentHandler
interface is to extend the org.xml.sax.helpers.DefaultHandler
class. The DefaultHandler
class provides some default behavior for handling events, although typically the behavior is to do nothing.
The SAX2Namespace.java
program overrides methods for only the events that it cares about. Specifically, the XMLDefaultHandler
class implements only two methods: startElement()
and endElement()
. The startElement
event is triggered whenever SAXParser
encounters a new element within the XML document. When this event is triggered, the startElement()
method prints the namespace information for the element.
The SAX2Namespace.java
sample program follows these steps:
Instantiate a new event handler of type DefaultHandler
. The following code fragment illustrates this technique:
DefaultHandler defHandler = new XMLDefaultHandler();
Create a SAX parser and set its validation mode. The following code fragment from SAXSample.java
sets the mode to DTD validation:
Parser parser = new SAXParser(); ((SAXParser)parser).setValidationMode(SAXParser.DTD_VALIDATION);
Register event handlers with the SAX parser. The following code fragment registers handlers for the input document, the DTD, entities, and errors:
parser.setContentHandler(defHandler); parser.setEntityResolver(defHandler); parser.setDTDHandler(defHandler); parser.setErrorHandler(defHandler);
The following code shows the XMLDefaultHandler
implementation. The startElement()
and endElement()
methods print the qualified name, local name, and namespace URI for each element (refer to Table 3-7 for an explanation of these terms):
class XMLDefaultHandler extends DefaultHandler { public void XMLDefaultHandler(){} public void startElement(String uri, String localName, String qName, Attributes atts) throws SAXException { System.out.println("ELEMENT Qualified Name:" + qName); System.out.println("ELEMENT Local Name :" + localName); System.out.println("ELEMENT Namespace :" + uri); for (int i=0; i<atts.getLength(); i++) { qName = atts.getQName(i); localName = atts.getLocalName(i); uri = atts.getURI(i); System.out.println(" ATTRIBUTE Qualified Name :" + qName); System.out.println(" ATTRIBUTE Local Name :" + localName); System.out.println(" ATTRIBUTE Namespace :" + uri); // You can get the type and value of the attributes either // by index or by the Qualified Name. String type = atts.getType(qName); String value = atts.getValue(qName); System.out.println(" ATTRIBUTE Type :" + type); System.out.println(" ATTRIBUTE Value :" + value); System.out.println(); } } public void endElement(String uri, String localName, String qName) throws SAXException { System.out.println("ELEMENT Qualified Name:" + qName); System.out.println("ELEMENT Local Name :" + localName); System.out.println("ELEMENT Namespace :" + uri); } }
Parse the input XML document. The following code fragment converts the document to a URL and then parses it:
parser.parse(DemoUtil.createURL(argv[0]).toString());
You can create a simple SAX parser as a instance of the XMLTokenizer
class and use the parser to tokenize the input XML. Table 3-13 lists useful methods in the class.
Table 3-13 XMLTokenizer Methods
Method | Description |
---|---|
setToken() |
Register a new token for XML tokenizer. |
setErrorStream() |
Register a output stream for errors |
tokenize() |
Tokenizes the input XML |
SAX parsers with Tokenizer
features must implement the XMLToken
interface. The callback method for XMLToken
is token()
, which receives an XML token and its corresponding value and performs an action. For example, you can implement token()
so that it prints the token name followed by the value of the token.
The Tokenizer.java
program accepts an XML document as input, parses it, and prints a list of the XML tokens. The program implements a doParse()
method that does the following:
Create a URL from the input XML stream:
URL url = DemoUtil.createURL(arg);
Create an XMLTokenizer
parser as follows:
parser = new XMLTokenizer ((XMLToken)new Tokenizer());
Register an output error stream as follows:
parser.setErrorStream (System.out);
Register tokens with the parser. The following code fragment from Tokenizer.java
shows just some of the registered tokens:
parser.setToken (STagName, true); parser.setToken (EmptyElemTag, true); parser.setToken (STag, true); parser.setToken (ETag, true); parser.setToken (ETagName, true); ...
Tokenize the XML document as follows:
parser.tokenize (url);
The token()
callback method determines the action to take when an particular token is encountered. The following code fragment from Tokenizer.java
shows some of the implementation of this method:
public void token (int token, String value) { switch (token) { case XMLToken.STag: System.out.println ("STag: " + value); break; case XMLToken.ETag: System.out.println ("ETag: " + value); break; case XMLToken.EmptyElemTag: System.out.println ("EmptyElemTag: " + value); break; case XMLToken.AttValue: System.out.println ("AttValue: " + value); break; ... default: break; } }
JAXP enables you to use the SAX and DOM parsers and the XSLT processor in your Java program. This section contains the following topics:
The JAXP APIs, which are listed in Table 3-14, have an API structure consisting of abstract classes that provide a thin layer for parser pluggability. Oracle implemented JAXP based on the Sun Microsystems reference implementation.
Table 3-14 JAXP Packages
Package | Description |
---|---|
javax.xml.parsers |
Provides standard APIs for DOM 2.0 and SAX 1.0 parsers. The package contains vendor-neutral factory classes that give you a SAXParser and a DocumentBuilder . DocumentBuilder creates a DOM-compliant Document object. |
javax.xml.transform |
Defines the generic APIs for processing XML transformation and performing a transformation from a source to a result. |
javax.xml.transform.dom |
Provides DOM-specific transformation APIs. |
javax.xml.transform.sax |
Provides SAX2-specific transformation APIs. |
javax.xml.transform.stream |
Provides stream- and URI- specific transformation APIs. |
You can rely on the factory design pattern to create new SAX parser engines with JAXP. Figure 3-6 illustrates the basic process.
The basic steps for parsing with SAX through JAXP are as follows:
Create a new SAX parser factory with the SAXParserFactory
class.
Configure the factory.
Create a new SAX parser (SAXParser
) object from the factory.
Set the event handlers for the SAX parser.
Parse the input XML documents.
You can rely on the factory design pattern to create new DOM document builder engines with JAXP. Figure 3-7 illustrates the basic process.
The basic steps for parsing with DOM through JAXP are as follows:
Create a new DOM parser factory. with the DocumentBuilderFactory
class.
Configure the factory.
Create a new DOM builder (DocumentBuilder
) object from the factory.
Set the error handler and entity resolver for the DOM builder.
Parse the input XML documents.
The basic steps for transforming XML through JAXP are as follows:
Create a new transformer factory. Use the TransformerFactory
class.
Configure the factory.
Create a new transformer from the factory and specify an XSLT stylesheet.
Configure the transformer.
Transform the document.
The JAXPExamples.java
program illustrates the basic steps of parsing with JAXP. The program implements the following methods and uses them to parse and perform additional processing on XML files in the /jaxp
directory:
basic()
identity()
namespaceURI()
templatesHandler()
contentHandler2contentHandler()
contentHandler2DOM()
reader()
xmlFilter()
xmlFilterChain()
The program creates URLs for the jaxpone.xml
and jaxpone.xsl
sample XML files and then calls the preceding methods in sequence. The basic design of the demo is as follows (to save space only the basic()
method is shown):
public class JAXPExamples { public static void main(String argv[]) throws TransformerException, TransformerConfigurationException, IOException, SAXException, ParserConfigurationException, FileNotFoundException { try { URL xmlURL = createURL("jaxpone.xml"); String xmlID = xmlURL.toString(); URL xslURL = createURL("jaxpone.xsl"); String xslID = xslURL.toString(); // System.out.println("--- basic ---"); basic(xmlID, xslID); System.out.println(); ... } catch(Exception err) { err.printStackTrace(); } } // public static void basic(String xmlID, String xslID) throws TransformerException, TransformerConfigurationException { TransformerFactory tfactory = TransformerFactory.newInstance(); Transformer transformer = tfactory.newTransformer(new StreamSource(xslID)); StreamSource source = new StreamSource(xmlID); transformer.transform(source, new StreamResult(System.out)); } ... }
The reader()
method in JAXPExamples.java
program shows a simple technique for parsing an XML document with SAX. It follows these steps:
Create a new instance of a TransformerFactory
and then cast it to a SAXTransformerFactory
. The application can use the SAX factory to configure and obtain SAX parser instances. For example:
TransformerFactory tfactory = TransformerFactory.newInstance(); SAXTransformerFactory stfactory = (SAXTransformerFactory)tfactory;
Create an XML reader by creating a StreamSource
object from a stylesheet and passing it to the factory method newXMLFilter()
. This method returns an XMLFilter
object that uses the specified Source
as the transformation instructions. For example:
URL xslURL = createURL("jaxpone.xsl"); String xslID = xslURL.toString(); ... StreamSource streamSource = new StreamSource(xslID); XMLReader reader = stfactory.newXMLFilter(streamSource);
Create content handler and register it with the XML reader. The following example creates an instance of the class oraContentHandler
, which is created by compiling the oraContentHandler.java
program in the demo directory:
ContentHandler contentHandler = new oraContentHandler(); reader.setContentHandler(contentHandler);
The following code fragment shows some of the implementation of the oraContentHandler
class:
public class oraContentHandler implements ContentHandler { private static final String TRADE_MARK = "Oracle 9i "; public void setDocumentLocator(Locator locator) { System.out.println(TRADE_MARK + "- setDocumentLocator"); } public void startDocument() throws SAXException { System.out.println(TRADE_MARK + "- startDocument"); } public void endDocument() throws SAXException { System.out.println(TRADE_MARK + "- endDocument"); } ...
Parse the input XML document by passing the InputSource
to the XMLReader.parse()
method. For example:
InputSource is = new InputSource(xmlID); reader.parse(is);
You can use JAXP to transform any class of the interface Source
into a class of the interface Result
. Table 3-15 shows some sample transformations.
Table 3-15 Transforming Classes with JAXP
Use JAXP to transform this class . . . | Into this class . . . |
---|---|
DOMSource |
DOMResult |
StreamSource |
StreamResult |
SAXSource |
SAXResult |
These transformations accept the following types of input:
XML documents
Stylesheets
The ContentHandler
class defined in oraContentHandler.java
For example, you can use the identity()
method to perform a transformation in which the output XML document is the same as the input XML document. You can use the xmlFilterChain()
method to apply three stylesheets in a chain.
The basic()
method shows how to perform a basic XSLT transformation. The method follows these steps:
Create a new instance of a TransformerFactory
. For example:
TransformerFactory tfactory = TransformerFactory.newInstance();
Create a new XSL transformer from the factory and specify the stylesheet to use for the transformation. The following example specifies the jaxpone.xsl
stylesheet:
URL xslURL = createURL("jaxpone.xsl"); String xslID = xslURL.toString(); . . . Transformer transformer = tfactory.newTransformer(new StreamSource(xslID));
Set the stream source to the input XML document. The following fragment from the basic()
method sets the stream source to jaxpone.xml
:
URL xmlURL = createURL("jaxpone.xml"); String xmlID = xmlURL.toString(); . . . StreamSource source = new StreamSource(xmlID);
Transform the document from a StreamSource
to a StreamResult
. The following example transforms a StreamSource
into a StreamResult
:
transformer.transform(source, new StreamResult(System.out));
The Oracle XDK enables you to use SAX or DOM to parse XML and then write the parsed data to a compressed binary stream. You can then reverse the process and reconstruct the XML data. This section contains the following topics:
The DOMCompression.java
and DOMDeCompression.java
programs illustrate the basic steps of DOM compression and decompression. The most important DOM compression methods are the following:
XMLDocument.writeExternal()
saves the state of the object by creating a binary compressed stream with information about the object.
XMLDocument.readExternal()
reads the information written in the compressed stream by the writeExternal()
method and restores the object.
The basic technique for serialization is create an XMLDocument
by parsing an XML document, initialize an ObjectOutputStream
, and then call XMLDocument.writeExternal()
to write the compressed stream.
The DOMCompression.java
program follows these steps:
Create a DOM parser, parse an input XML document, and obtain the DOM representation. This technique is described in "Performing Basic DOM Parsing". The following code fragment from DOMCompression.java
illustrates this technique:
public class DOMCompression { static OutputStream out = System.out; public static void main(String[] args) { XMLDocument doc = new XMLDocument(); DOMParser parser = new DOMParser(); try { parser.setValidationMode(XMLParser.SCHEMA_VALIDATION); parser.setPreserveWhitespace(false); parser.retainCDATASection(true); parser.parse(createURL(args[0])); doc = parser.getDocument(); ...
Create a FileOutputStream
and wrap it in an ObjectOutputStream
for serialization. The following code fragment creates the xml.ser
output file:
OutputStream os = new FileOutputStream("xml.ser"); ObjectOutputStream oos = new ObjectOutputStream(os);
Serialize the object to the file by calling XMLDocument.writeExternal()
. This method saves the state of the object by creating a binary compressed stream with information about this object. The following statement illustrates this technique:
doc.writeExternal(oos);
The basic technique for decompression is to create an ObjectInputStream
object and then call XMLDocument.readExternal()
to read the compressed stream.The DOMDeCompression.java
program follows these steps:
Create a file input stream for the compressed file and wrap it in an ObjectInputStream
. The following code fragment from DOMDeCompression.java
creates a FileInputStream
from the compressed file created in the previous section:
InputStream is; ObjectInputStream ois; ... is = new FileInputStream("xml.ser"); ois = new ObjectInputStream(is);
Create a new XML document object to contain the decompressed data. The following code fragment illustrates this technique:
XMLDocument serializedDoc = null; serializedDoc = new XMLDocument();
Read the compressed file by calling XMLDocument.readExternal()
. The following code fragment read the data and prints it to System.out
:
serializedDoc.readExternal(ois); serializedDoc.print(System.out);
The SAXCompression.java
program illustrates the basic steps of parsing a file with SAX, writing the compressed stream to a file, and then reading the serialized data from the file. The important classes are as follows:
CXMLHandlerBase
is a SAX Handler
that compresses XML data based on SAX events. To use the SAX compression, implement this interface and register with the SAX parser by calling Parser.setDocumentHandler()
.
CXMLParser
is an XML parser that regenerates SAX events from a compressed stream.
The basic technique for serialization is to register a CXMLHandlerBase
handler with a SAX parser, initialize an ObjectOutputStream
, and then parse the input XML. The SAXCompression.java
program follows these steps:
Create a FileOutputStream
and wrap it in an ObjectOutputStream
. The following code fragment from SAXCompression.java
creates the xml.ser
file:
String compFile = "xml.ser"; FileOutputStream outStream = new FileOutputStream(compFile); ObjectOutputStream out = new ObjectOutputStream(outStream);
Create the SAX event handler. The CXMLHandlerBase
class implements the ContentHandler
, DTDHandler
, EntityResolver
, and ErrorHandler
interfaces. The following code fragment illustrates this technique:
CXMLHandlerBase cxml = new CXMLHandlerBase(out);
Create the SAX parser. The following code fragment illustrates this technique:
SAXParser parser = new SAXParser();
Configure the SAX parser. The following code fragment sets the content handler and entity resolver, and also sets the validation mode:
parser.setContentHandler(cxml); parser.setEntityResolver(cxml); parser.setValidationMode(XMLConstants.NONVALIDATING);
Note that oracle.xml.comp.CXMLHandlerBase
implements both DocumentHandler
and ContentHandler
interfaces, but use of the SAX 2.0 ContentHandler
interface is preferred.
Parse the XML. The program writes the serialized data to the ObjectOutputStream
. The following code fragment illustrates this technique:
parser.parse(url);
The basic technique for deserialization of a SAX object is to create a SAX compression parser with the CXMLParser
class, set the content handler for the parser, and then parse the compressed stream.
The SAXDeCompression.java
program follows these steps:
Create a SAX event handler. The SampleSAXHandler.java
program creates a handler for use by SAXDeCompression.java
. The following code fragment from SAXDeCompression.java
creates handler object:
SampleSAXHandler xmlHandler = new SampleSAXHandler();
Create the SAX parser by instantiating the CXMLParser
class. This class implements the regeneration of XML documents from a compressed stream by generating SAX events from them. The following code fragment illustrates this technique:
CXMLParser parser = new CXMLParser();
Set the event handler for the SAX parser. The following code fragment illustrates this technique:
parser.setContentHandler(xmlHandler);
Parse the compressed stream and generates the SAX events. The following code receives a filename from the command line and parses the XML:
parser.parse(args[0]);
This section contains the following topics:
You can use the selectNodes()
method in the XMLNode
class to extract content from a DOM tree or subtree based on the select patterns allowed by XSL. You can use the optional second parameter of selectNodes()
to resolve namespace prefixes, that is, to return the expanded namespace URL when given a prefix. The XMLElement
class implements NSResolver
, so a reference to an XMLElement
object can be sent as the second parameter. XMLElement
resolves the prefixes based on the input document. You can use the NSResolver
interface if you need to override the namespace definitions.
The sample code in Example 3-4 illustrates how to use selectNodes()
.
Example 3-4 Extracting Contents of a DOM Tree with selectNodes()
// // selectNodesTest.java // import java.io.*; import oracle.xml.parser.v2.*; import org.w3c.dom.Node; import org.w3c.dom.Element; import org.w3c.dom.Document; import org.w3c.dom.NodeList; public class selectNodesTest { public static void main(String[] args) throws Exception { // supply an xpath expression String pattern = "/family/member/text()"; // accept a filename on the command line // run the program with $ORACLE_HOME/xdk/demo/java/parser/common/family.xml String file = args[0]; if (args.length == 2) pattern = args[1]; DOMParser dp = new DOMParser(); dp.parse(DemoUtil.createURL(file)); // include createURL from DemoUtil XMLDocument xd = dp.getDocument(); XMLElement element = (XMLElement) xd.getDocumentElement(); NodeList nl = element.selectNodes(pattern, element); for (int i = 0; i < nl.getLength(); i++) { System.out.println(nl.item(i).getNodeValue()); } // end for } // end main } // end selectNodesTest
To test the program, create a file with the code in Example 3-4 and then compile it in the $ORACLE_HOME/xdk/demo/java/parser/
common
directory. Pass the filename family.xml
to the program as a parameter to traverse the <family>
tree. The output should be as follows:
% java selectNodesTest family.xml Sarah Bob Joanne Jim
Now run the following to determine the values of the memberid
attributes of all <member>
elements in the document:
% java selectNodesTest family.xml //member/@memberid m1 m2 m3 m4
Suppose that you want to write a program so that a user can fill in a client-side Java form and obtain an XML document. Suppose that your Java program contains the following variables of type String
:
String firstname = "Gianfranco"; String lastname = "Pietraforte";
You can use either of the following techniques to insert this information into an XML document:
Create an XML document in a string and then parse it. For example:
String xml = "<person><first>"+firstname+"</first>"+ "<last>"+lastname+"</last></person>"; DOMParser d = new DOMParser(); d.parse(new StringReader(xml)); Document xmldoc = d.getDocument();
Use DOM APIs to construct an XML document, creating elements and then appending them to one another. For example:
Document xmldoc = new XMLDocument(); Element e1 = xmldoc.createElement("person"); xmldoc.appendChild(e1); Element e2 = xmldoc.createElement("firstname"); e1.appendChild(e2); Text t = xmldoc.createText(Larry); e2.appendChild(t);
Note that you can only use the second technique on a single DOM tree. For example, suppose that you write the code snippet in Example 3-5.
Example 3-5 Incorrect Use of appendChild()
XMLDocument xmldoc1 = new XMLDocument(); XMLElement e1 = xmldoc1.createElement("person"); XMLDocument xmldoc2 = new XMLDocument(); XMLElement e2 = xmldoc2.createElement("firstname"); e1.appendChild(e2);
The preceding code raises a DOM exception of WRONG_DOCUMENT_ERR
when calling XMLElement.appendChild()
because the owner document of e1
is xmldoc1
whereas the owner of e2
is xmldoc2
. The appendChild()
method only works within a single tree, but the code in Example 3-5 uses two different trees.
You can use the XMLDocument.importNode()
method, introduced in DOM 2, and the XMLDocument.adoptNode()
method, introduced in DOM 3, to copy and paste a DOM document fragment or a DOM node across different XML documents. The commented lines in Example 3-6 show how to perform this task.
Example 3-6 Merging Documents with appendChild
XMLDocument doc1 = new XMLDocument(); XMLElement element1 = doc1.createElement("person"); XMLDocument doc2 = new XMLDocument(); XMLElement element2 = doc2.createElement("firstname"); // element2 = doc1.importNode(element2); // element2 = doc1.adoptNode(element2); element1.appendChild(element2);
This section discusses techniques for parsing DTDs. It contains the sections:
If you call the DOMParser.parse()
method to parse the XML Document as an InputStream
, then use the DOMParser.setBaseURL()
method to recognize external DTDs within your Java program. This method points to a location where the DTDs are exposed.
The following procedure describes how to load and parse a DTD:
Load the DTD as an InputStream
. For example, assume that you want to validate documents against the /mydir/my.dtd
external DTD. You can use the following code:
InputStream is = MyClass.class.getResourceAsStream("/mydir/my.dtd");
This code opens ./mydir/my.dtd
in the first relative location in the CLASSPATH
where it can be found, including the JAR file if it is in the CLASSPATH
.
Create a DOM parser and set the validation mode. For example, use this code:
DOMParser d = new DOMParser(); d.setValidationMode(DTD_VALIDATION);
Parse the DTD. The following example passes the InputStream
object to the DOMParser.parseDTD()
method:
d.parseDTD(is, "rootelementname");
Get the document type and then set it. The getDoctype()
method obtains the DTD object and the setDoctype()
method sets the DTD to use for parsing. The following example illustrates this technique:
d.setDoctype(d.getDoctype());
The following code demonstrates an alternative technique. You can invoke the parseDTD()
method to parse a DTD file separately and get a DTD object:
d.parseDTD(new FileReader(/mydir/my.dtd)); DTD dtd = d.getDoctype(); parser.setDoctype(dtd);
Parse the input XML document. For example, the following code parses mydoc.xml
:
d.parse("mydoc.xml");
The XML parser for Java provides for DTD caching in validation and nonvalidation modes through the DOMParser.setDoctype()
method. After you set the DTD with this method, the parser caches this DTD for further parsing. Note that DTD caching is optional and is not enabled automatically.
Assume that your program must parse several XML documents with the same DTD. After you parse the first XML document, you can obtain the DTD from the parser and set it as in the following example:
DOMParser parser = new DOMParser(); DTD dtd = parser.getDoctype(); parser.setDoctype(dtd);
The parser caches this DTD and uses it for parsing subsequent XML documents. Example 3-7 provides a more complete illustration of how you can invoke DOMParser.setDoctype()
to cache the DTD.
Example 3-7 DTDSample.java
/** * DESCRIPTION * This program illustrates DTD caching. */ import java.net.URL; import java.io.*; import org.xml.sax.InputSource; import oracle.xml.parser.v2.*; public class DTDSample { static public void main(String[] args) { try { if (args.length != 3) { System.err.println("Usage: java DTDSample dtd rootelement xmldoc"); System.exit(1); } // Create a DOM parser DOMParser parser = new DOMParser(); // Configure the parser parser.setErrorStream(System.out); parser.showWarnings(true); // Create a FileReader for the DTD file specified on the command // line and wrap it in an InputSource FileReader r = new FileReader(args[0]); InputSource inSource = new InputSource(r); // Create a URL from the command-line argument and use it to set the // system identifier inSource.setSystemId(DemoUtil.createURL(args[0]).toString()); // Parse the external DTD from the input source. The second argument is // the name of the root element. parser.parseDTD(inSource, args[1]); DTD dtd = parser.getDoctype(); // Create a FileReader object from the XML document specified on the // command line r = new FileReader(args[2]); // Wrap the FileReader in an InputSource, create a URL from the filename, // and set the system identifier inSource = new InputSource(r); inSource.setSystemId(DemoUtil.createURL(args[2]).toString()); // ******************** parser.setDoctype(dtd); // ******************** parser.setValidationMode(DOMParser.DTD_VALIDATION); // parser.setAttribute(DOMParser.USE_DTD_ONLY_FOR_VALIDATION,Boolean.TRUE); parser.parse(inSource); // Obtain the DOM tree and print XMLDocument doc = parser.getDocument(); doc.print(new PrintWriter(System.out)); } catch (Exception e) { System.out.println(e.toString()); } } }
If the cached DTD Object is used only for validation, then set the DOMParser.USE_DTD_ONLY_FOR_VALIDATION
attribute. Otherwise, the XML parser will copy the DTD object and add it to the resulting DOM tree. You can set the parser as follows:
parser.setAttribute(DOMParser.USE_DTD_ONLY_FOR_VALIDATION,Boolean.TRUE);
This section contains the following topics:
When reading an XML file stored on the operating system, do not use the FileReader
class. Instead, use the XML parser to detect the character encoding of the document automatically. Given a binary FileInputStream
with no external encoding information, the parser automatically determines the character encoding based on the byte order mark and encoding declaration of the XML document. You can parse any well-formed document in any supported encoding with the sample code in the AutoDetectEncoding.java
demo. This demo is located in $ORACLE_HOME/xdk/demo/java/parser/dom.
Note: Include the proper encoding declaration in your document according to the specification.setEncoding() cannot set the encoding for your input document. Rather, it is used with oracle.xml.parser.v2.XMLDocument to set the correct encoding for printing. |
Suppose that you load XML into the an NCLOB
column of a database using UTF-8 encoding. The XML contains two UTF-8 multibyte characters:
G(0xc2,0x82)otingen, Br(0xc3,0xbc)ck_W
You write a Java stored function that does the following:
Uses the default connection object to connect to the database.
Runs a SELECT
query.
Obtains the oracle.jdbc.OracleResultSet
object.
Calls the OracleResultSet.getCLOB()
method.
Calls the getAsciiStream()
method on the CLOB
object.
Executes the following code to get the XML into a DOM object:
DOMParser parser = new DOMParser(); parser.setPreserveWhitespace(true); parser.parse(istr); // istr getAsciiStream XMLDocument xmldoc = parser.getDocument();
The program throws an exception stating that the XML contains an invalid UTF-8 encoding even though the character (0xc2
, 0x82
) is valid UTF-8. The problem is that the character can be distorted when the program calls the OracleResultSet.getAsciiStream()
method. To solve this problem, invoke the getUnicodeStream()
and getBinaryStream()
methods instead of getAsciiStream()
. If this technique does not work, then try to print the characters to make sure that they are not distorted before they are sent to the parser in when you call DOMParser.parse(istr)
.
You should not use the FileWriter
class when writing XML files because it depends on the default character encoding of the runtime environment. The output file can suffer from a parsing error or data loss if the document contains characters that are not available in the default character encoding.
UTF-8 encoding is popular for XML documents, but UTF-8 is not usually the default file encoding of Java. Using a Java class in your program that assumes the default file encoding can cause problems. To avoid these problems, you can use the technique illustrated in the I18nSafeXMLFileWritingSample.java
program in $ORACLE_HOME/xdk/demo/java/parser/dom
.
Note that you cannot use System.out.println()
to output special characters. You need to use a binary output stream such as OutputStreamWriter
that is encoding aware. You can construct an OutputStreamWriter
and use the write(char[]
, int
, int)
method to print, as in the following example:
/* Java encoding string for ISO8859-1*/ OutputStreamWriter out = new OutputStreamWriter(System.out, "8859_1"); OutputStreamWriter.write(...);
Currently, there is no method that can directly parse an XML document contained in a String
. You need to convert the string into an InputStream
or InputSource
object before parsing.
One technique is to create a ByteArrayInputStream
that uses the bytes in the string. For example, assume that xmlDoc
is a reference to a string of XML. You can use technique shown in Example 3-8 to convert the string to a byte array, convert the array to a ByteArrwayInputStream
, and then parse.
Example 3-8 Converting XML in a String
// create parser DOMParser parser=new DOMParser(); // create XML document in a string String xmlDoc = "<?xml version='1.0'?>"+ "<hello>"+ " <world/>"+ "</hello>"; // convert string to bytes to stream byte aByteArr [] = xmlDoc.getBytes();ByteArrayInputStream bais = new ByteArrayInputStream(aByteArr,0,aByteArr.length); // parse and obtain DOM tree DOMParser.parse(bais); XMLDocument doc = parser.getDocument();
Suppose that you want to convert the XMLDocument
object created in the previous code back to a string. You can perform this task by wrapping a StringWriter
in a PrintWriter
. The following example illustrates this technique:
StringWriter sw = new StringWriter(); PrintWriter pw = new PrintWriter(sw); doc.print(pw); String YourDocInString = sw.toString();
ParseXMLFromString.java
, which is located in $ORACLE_HOME/xdk/demo/java/parser/dom
, is a complete program that creates an XML document as a string and parses it.
Assume that an input XML file contains accented characters such as an é
. Example 3-9 shows one way to parse an XML document with accented characters.
Example 3-9 Parsing a Document with Accented Characters
DOMParser parser=new DOMParser(); parser.setPreserveWhitespace(true); parser.setErrorStream(System.err); parser.setValidationMode(false); parser.showWarnings(true); parser.parse (new FileInputStream(new File("file_with_accents.xml")));
When you attempt to parse the XML file, the parser can sometimes throw an "Invalid UTF-8 encoding" exception. If you explicitly set the encoding to UTF-8, or if you do not specify it at all, then the parser interprets an accented character—which has an ASCII value greater than 127—as the first byte of a UTF-8 multibyte sequence. If the subsequent bytes do not form a valid UTF-8 sequence, then you receive an error.
This error means that your XML editor did not save the file with UTF-8 encoding. For example, it may have saved it with ISO-8859-1 encoding. The encoding is a particular scheme used to write the Unicode character number representation to disk. Adding the following element to the top of an XML document does not itself cause your editor to write out the bytes representing the file to disk with UTF-8 encoding:
<?xml version="1.0" encoding="UTF-8"?>
One solution is to read in accented characters in their hex or decimal format within the XML document, for example, Ù
. If you prefer not to use this technique, however, then you can set the encoding based on the character set that you were using when you created the XML file. For example, try setting the encoding to ISO-8859-1 (Western European ASCII) or to something different, depending on the tool or operating system you are using.
Special characters such as &
, $
, and #
, and so on are not legal in tag names. For example, if a document names tags after companies, and if the document includes the tag <A&B>
, then the parser issues an error about invalid characters.
If you are creating an XML document from scratch, then you can work around this problem by using only valid NameChars
. For example, you can name the tag <A_B>, <AB>
, <A_AND_B>
and so on. If you are generating XML from external data sources such as database tables, however, then XML 1.0 does not address this problem.
The datatype XMLType
addresses this problem by providing the setConvertSpecialChars
and convert
functions in the DBMS_XMLGEN
package. You can use these functions to control the use of special characters in SQL names and XML names. The SQL to XML name mapping functions escape invalid XML NameChar
characters in the format of _XHHHH_
, where HHHH
is the Unicode value of the invalid character. For example, table name V$SESSION
is mapped to XML name V_X0024_SESSION
.
Escaping invalid characters is another workaround to give users a way to serialize names so that they can reload them somewhere else.