Open cholmcc opened 8 months ago
A bit more.
The following code
import java.util.zip.ZipEntry;
import java.util.zip.ZipException;
import java.util.zip.ZipFile;
import java.io.IOException;
import java.io.File;
import java.net.URLDecoder;
import java.nio.charset.StandardCharsets;
class Foo
{
public static void main(String[] args)
{
final String filename = URLDecoder.decode(args[0],
StandardCharsets.UTF_8);
final File file = new File(filename);
// if (file == null || !file.exists() || !file.isFile()) {
// System.err.println("File "+args[0]+" not opened");
// return;
// }
try (ZipFile zip = new ZipFile(file)) {
ZipEntry build = zip.getEntry("buildFile.xml");
}
catch (final ZipException e) {
System.err.println(e);
}
catch (final IOException e) {
System.err.println(e);
}
}
}
reproducing what is done in the VASSAL app, and compiled as
$ javac Foo.java
and executed like
$ java Foo AfrikaKorps.vmod
works flawlessly. But,
$ java -Duser.dir=/tmp -cp `pwd` Foo AfrikaKorps.vmod
java.nio.file.NoSuchFileException: AfrikaKorps.vmod
fails, and
$ java -Duser.dir=/tmp -cp `pwd` Foo `pwd`/AfrikaKorps.vmod
works. So the culprit seems to be the -Duser.dir=...
. The question is if this setting is really needed. It seems not, as
java -classpath /opt/vassal/current/lib/Vengine.jar VASSAL.launch.ModuleManager
seems to work just fine except, of course, that help files etc. cannot be found. They seem to assumed to live under the current working directory. A solution could be to deduce the directory from where the JAR was run and use that to look-up help files, images, etc.
public static String getDir()
{
try {
return new File(Foo.class.getProtectionDomain()
.getCodeSource()
.getLocation().toURI()).getPath();
}
catch (final URISyntaxException e) {
System.err.println(e);
}
return "";
}
Alternative, it could be deduced by the wrapper shell script and propagated to the Java application - e.g.,
java -Dvassal.dir=$INSTALL_DIR -cp $INSTALL_DIR/lib/Vengine.jar VASSAL.launch.ModuleManager "$@"
and
final String vassalDir = System.getProperty("vassal.dir");
in some relevant place in the code.
I think, perhaps, messing with user.dir
is not such a good idea.
Yours, Christian
Hi,
When I try to do e.g.,
Investigating a bit deeper
So for some reason,
new ZipFile(file)
thinks the file doesn't exist, even though the code just checked that it did (line 57 above). However, if I doit does work.
Oh, and in line 263 of
LaunchRequest
the short optionc
is missing fromYours, Christian