如何在不使用任何第三方工具的情况下通过 java 代码将我的 Java 代码转换为 EXE?

发布于 2024-11-08 04:41:18 字数 514 浏览 3 评论 0原文

首先我想传达的是,我的问题与这个问题不重复,如何将 Java 程序转换为 .exe 文件?

由于我的问题,我编写了一个Swing程序,在该程序中,有一个名为“生成EXE”的按钮,当单击该按钮时,我必须生成该程序的EXE,所以我需要通过Java代码创建EXE,我使用 Advance Installer IDE 创建了 EXE http://www.advancedinstaller.com/user-guide/tutorial-java.html,但现在我的要求是我必须通过Java代码生成EXE而不是手动使用IDE,我的java代码有创建 EXE。

谢谢

First i want to convey is, my Question is Not duplicate to this Question, How can I convert my Java program to an .exe file?.

Since My question, I had wrote a Swing program, in that program, there is a Button called "Generate EXE" , when the Button is clicked i have to generate the EXE of that program, so i need to create EXE via Java Code, i had created EXE using Advance Installer IDE http://www.advancedinstaller.com/user-guide/tutorial-java.html, But now my requirement is i have to generate EXE via Java code not using IDE by manually, my java code has create the EXE.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

丢了幸福的猪 2024-11-15 04:41:19

这不是如何制作 exe,但因为我认为这些解决方案可以完成相同的工作,而且我个人更喜欢它们,所以无论如何都会发布它:

  • 创建 可执行 jar 而不是 exe
  • 生成一个脚本(在您的情况下可能是 .bat 文件),该脚本将使用适当的参数运行 java )

如果 exe 是绝对必需的,请将 .bat 文件转换为 exe(google for bat to exe

This is not how to make an exe but since I think these solutions do the same job and I would personally prefer them, will post it anyway:

  • Create executable jar instead of exe
  • generate a script (in your case probably .bat file) which will run the java with appropriate parameters for you

If the exe is absolute requirement, convert the .bat file to exe (google for bat to exe)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文