我试图将一个exe文件包含在jar-Application中并运行它。我们的想法是首先将其临时提取,然后运行temp-exe文件。怎么做?这就是我尝试过的。有我的代码。由于源文件“ffmpeg.exe”,它发生异常java.io.FileNotFoundException。我验证了,但文件已包含且目录正确。
package extractffmpeg;
import java.io.File;
import java.io.IOException;
import java.net.URISyntaxException;
import java.net.URL;
import javafx.application.Application;
import javafx.application.Platform;
import javafx.stage.Stage;
import org.apache.commons.io.FileUtils;
public class ExtractFFmpeg extends Application {
public void start(Stage primaryStage) throws IOException, URISyntaxException {
extractExe();
System.out.println("extract successfull");
Platform.exit();
}
public static void main(String[] args) {
launch(args);
}
public void extractExe() throws URISyntaxException, IOException{
final String resourcesPath = "ffmpeg/ffmpeg.exe";
URL url = ExtractFFmpeg.class.getResource(resourcesPath);
File source = new File(url.toString());
System.out.println("shows url of ffmpeg: " + url.getPath());
System.out.println("shows file of ffmpeg: " + source);
File destination = new File("C:/Users/FNI2Abt/Desktop/ffmpeg.exe");
FileUtils.copyFile(source, destination);
}
}
答案 0 :(得分:0)
这个想法是创建一个自解压存档。存档应包含JAR和EXE。 JAR文件应包含一个类,该类将在相邻的EXE上调用Process.exec(...)。
从那里开始,您可以按照本教程进行操作: How do I make a self extract and running installer