Version: 2.0.RC3
With the launch4j executables it's unfortunately
impossible to set arguments with spaces.
e.g:
myshell.exe "C:\Program Files\Test\abc.exe"
and with this small code:
public static void main(String[] args) {
for (int c=0; c < args.length; c++){
System.err.println((c+1) + ") " +args[c]);
}
}
results:
1) C:\Program
2) Files\Test\abc.exe
but with a normal java call like:
java -jar myshell.jar
you get the corrent result:
1) C:\Program Files\Test\abc.exe
It's hard to make an workaround in the java files,
because the double-quotes are removed.
Regards,
Steve
Grzegorz Kowal
General
None
Public
|
Date: 2005-10-31 10:51:34 PST Logged In: YES |