Batch files error
Brought to you by:
mbusman
When running the batch files to launch the programs
nothing happens. I have a double partition system with
OS/2 installed on C:\ and Windows installed on D:\ The
catch is that your batch files doesn't scan where the
files are located. It looks like you should submit an
additional batch to probe the system for the necesery
files. And btw try to use the Pause commands to halt
the process after executing the batches so one can read
the error messages that appear (if any).
Logged In: YES
user_id=1476673
Originator: NO
I get the same problem on Windows XP, except I had to edit the batch files to get them to work by taking out the quotes on the first variable assignment. XP likes to keep the quotes in the variable for some reason, at least when there are no spaces in the string.
it now looks like
set allclasspath=c:\sun\sdk\jdk\bin
c:\sun\sdk\jdk\bin\java -classpath "%allclasspath%:classes:classes\wapide:classes\sim:classes\Designer:classes\wbmp" wapide.WAPIDE
now that Sun changes the JDK installation location for the JDK.
when I run it, I get the following Java error:
C:\downloads\wap\WAPIDE>set allclasspath=c:\sun\sdk\jdk\bin
C:\downloads\wap\WAPIDE>c:\sun\sdk\jdk\bin\java -classpath "c:\sun\sdk\jdk\bin:c
lasses:classes\wapide:classes\sim:classes\Designer:classes\wbmp" wapide.WAPIDE
Exception in thread "main" java.lang.NoClassDefFoundError: wapide/WAPIDE