I'm on windows xp and need to call a static method that is on a class in a jar file. The jar file is in my classpath. The class is Process and the method is also called Process.
The documentation I'm reading says to call the method as follows:
I've done so, but get the following error:
What am I doing wrong?
Thanks -- I'm a beginner at this.
The documentation I'm reading says to call the method as follows:
Code:
java com\sun\org\apache\xalan\internal\xslt.Process -in in.xml -xsl style.xsl -out out.html.
I've done so, but get the following error:
Code:
Exception in thread "main" java.lang.NoClassDefFoundError: com\sun\org\apache\xa
lan\internal\xslt/Process
What am I doing wrong?
Thanks -- I'm a beginner at this.