Bill Halchin wrote:
>
> Hello,
>
> 1) Can the javac compler extract classes from .jar files if
> these files are in CLASS_PATH or must I "unjar"?
javac is like any other java program. If it is in the CLASSPATH (no
underscore) it can be found.
>
> 2) I tried "jar -t xerces.jar" and the jar utility seems to be
> waiting for more from StdIn?? I also tried "jar -x
> xerces.jar" with the same results. ?
try jar -tf xerces.jar
>
> I am trying to use the Apache Xerces SAX classes. Any help
> would be greatly appreciated!
>
Beware Documents created with the parser are ~ 500K. To get them
smaller you have to:
DOMParser.setFeature("http://apache.org/xml/features/dom/defer-node-expansion",
false);
----------------------------------------------------------------------
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]