我必须从我的 Java 程序中打开一个 .exe 文件。所以我首先尝试了以下代码。
Process process = runtime.exec("c:\\program files\\test\\test.exe");
但我遇到了一些错误。然后我发现必须从 c://program files/test/ 那个位置启动 exe,然后它才会打开而没有错误。所以我决定编写一个 .bat 文件并执行,以便它会 cd 到该位置并执行 .exe 文件。
以下是我的代码:
BufferedWriter fileOut;
String itsFileLocation = "c:\\program files\\test\\"
System.out.println(itsFileLocation);
try {
fileOut = new BufferedWriter(new FileWriter("C:\\test.bat"));
fileOut.write("cd\\"+"\n");
fileOut.write("cd "+ itsFileLocation +"\n");
fileOut.write("test.exe"+"\n");
fileOut.write("exit"+"\n");
fileOut.close(); // Close the output stream after all output is done.
} catch (IOException e1) {
e1.printStackTrace();
} // Create the Buffered Writer object to write to a file called filename.txt
Runtime runtime = Runtime.getRuntime();
try {
Process process =runtime.exec("cmd /c start C:\\test.bat");
} catch (IOException e) {
e.printStackTrace();
}
上面的代码完美运行。但是,命令提示符也在我的 .exe(应用程序)后面打开。它仅在 .exe 文件退出后关闭..
当我的应用程序统计信息时,我需要关闭我的命令提示符。
我的 .bat 文件在程序编写后将如下所示。
cd\
cd C:\Program Files\test\
test.exe
exit