Download treeview.jar,
a compressed Java Archive containing source code and other files.
Make sure that the executable file jar.exe (included with
the Java 2 Platform) is in your environment's path. For example, the following
command adds the path to a jar.exe that resides in d:\jdevFolder\jdk\bin.
set path=%path%;d:\jdevFolder\jdk\bin
Change directories to make the ex20030215_treeview\src
directory active.
cd ex20030215_treeview\src
Set your CLASSPATH to include the path to your Java compiler
(javac.exe) and the path to the Oracle XML Parser library (xmlparserv2.jar).
For example,
set CLASSPATH=.;..;d:\jdevFolder\jdk\bin;d:\jdevFolder\lib\xmlparserv2.jar
Enter the following command to invoke the XDK tool that
takes an XML document (po1_ann.xml) and applies an XSL stylesheet
(treeview.xsl) to generate an HTML file (result.html).
java oracle.xml.parser.v2.oraxsl po1_ann.xml treeview.xsl result.html