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.
我在 U:/myproject 中创建了我的项目,其中所有 java 的东西都安装在 C: Drive 中。我通过 netbeans 创建的 jar 文件在 u:/myproject/dist/myproject.jar 中。有人可以向我提供如何设置launch4j的干净说明吗?我必须先创建一个.exe文件吗?
或者如果我只是签署 jar 文件,我会得到这个错误
output.exe is not a valid win32 application
使用 Launch4J 可以非常简单。你只需要你的 .JAR 文件来获取你的 .EXE
我通常为我的项目做最少的步骤:
1) 构建程序
2)在第一页中将.JAR文件的路径提供给Launch4j
3)在第一页设置.EXE文件和.XML结果文件的输出
4)在“JRE”页面,设置最小JRE版本(例如:1.1.0)
5) 执行!!!
它应该提供一个好的 .exe 文件。
希望这可以帮助 !