Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Eclipse 中的库文件夹中添加了一个 zip 文件。我配置了构建路径并将 .zip 添加为内部 jar 文件。但是,我在程序中使用了一个 .exe。现在我已经在内部添加了文件,我怎样才能让那个 .exe 文件执行,或者获取这个文件的路径?
您不能从 zip/jar 中执行文件。您需要在运行时提取文件并将其放在文件系统中的某个位置,然后使用ProcessBuilder/执行它Runtime。如果你的应用有某种“安装”文件夹,你可以把它放在那里,或者你可以使用系统临时驱动器。
ProcessBuilder
Runtime