Quote from dougcs:
martys,
I know next to nothing about .jar files.
When I go through the command C:>java -spyderfilter.jar,
I get this error:
"JAR" is not recognized as an internal or external command, operable program or batch file.
Thanks for writing this as I see how it will save time.
DS
Hi Doug,
First we have to make sure there is no typo (cut and paste the command):
The command should be:
java -jar SpyderFilter.jar
Neither
java -spyderfilter.jar (as in your post)
nor
jar -jar SpyderFilter.jar (which can trigger the error you mentioned)
Second we have to make sure that you have installed the Java runtime environment and follow any instructions they have.
Can you run the command: java
Does it print out this screen dump:
Usage: java [-options] class [args...]
(to execute a class)
or java [-options] -jar jarfile [args...]
(to execute a jar file)
...
The jar file is not really an executable file like .exe. It is actually a ZIP file containing some java class files whose instructions the Java run time environment (java.exe) can interpret.
Give me some screen dump (mark and paste with the upperleft icon in the command prompt window) and show me where your jar file is and what you enter to get this error.
Trust me... you are very close.