我想通过从java代码传递两个参数来启动一个jar文件,我试过的是:
File jarFile = new File("path/to/jar/file");
if ((jarFile).exists()) {
String[] command = new String[5];
command[0] = "java.exe";
command[1] = "-jar";
command[2] = jarFile + "";
command[3] = "arg1";
command[4] = "arg2";
Process p = Runtime.getRuntime().exec(command);
p.waitFor();
} else {
System.out.println("File is not available");
}
代码非常适合启动jar, 但我想使用32位JVM启动jar文件,因为我的驱动程序只有32位。,我的机器包含32位和64位JVM,为了使用32位JVM启动jar我可能有硬编码java.exe位置如
command[0] = "C:\\Program Files (x86)\\Java\\jdk1.7.0_25\\bin\\java.exe"
但是1)如果最终用户在其他位置安装了java怎么办?
2)如果路径环境变量包含64位JVM位置,如果我只提供 java.exe 该怎么办?
我试过以下代码,但我无法使用此方法传递参数
String command = {"rundll32 url.dll,FileProtocolHandler ", jarFile + "" , arg1, arg2}
Process p = Runtime
.getRuntime()
.exec(command);
那么还有其他方法可以通过传递参数来启动jar文件吗?
答案 0 :(得分:1)
使用参数'-d32',即 java -d32 -jar jarfile arg1 arg2。
java -help也很方便。