Create Windows Installer for Java Programs

前端 未结 9 1351
你的背包
你的背包 2020-12-01 00:24

I\'m a Java beginner.

I already created a simple GUI application that display will \"hello world\" label.

But, how can I create an installer from .java or .j

相关标签:
9条回答
  • 2020-12-01 00:53

    I use a program called JSmooth. This turns java .jar files into executables. I then take those executable and create a installer using InstallShield. InstallShield allows you to create highly customizable installers. There is a free "Light Edition" that you can use. Very easy to do and very easy to add to build scripts.

    0 讨论(0)
  • 2020-12-01 00:53

    Basically, you have to save your project in jar and then convert to exe, you can use jar4exe or other software. When you have the exe file, use an installer software like Inno Setup Compile or other. After all those stpes Your project will be ready to be install in windows, mac or linux platform. Good Luck.

    0 讨论(0)
  • 2020-12-01 00:57

    You can use Ant task tool with InnoSetup and Launch4j under Eclipse IDE to create a professional-looking Windows-based EXE installer for Java-based program: How to create an exe file in java

    0 讨论(0)
提交回复
热议问题