Azaz ul haq
Azaz ul haq

Reputation: 53

Java Desktop Application Installer on Mac and Windows and Linux

I make a java application I want to make the setup file save in the USB. Firstly the installation process will check is JDK or JRE is installed or not and then proceed further installations. Is there any tool or anything way please guide me.

Upvotes: 0

Views: 585

Answers (1)

balazs
balazs

Reputation: 487

You can create a standalone installer with Self-Contained Application Packaging.

According to the documentation you can create packaged application in one or more of the following deployment modes:

  • As a standalone application, using the system
  • As a self-contained application, using a private copy of JRE
  • As a Java Web Start application, using the system JRE
  • Embedded in a web page, using the system JRE

Upvotes: 1

Related Questions