How to make a program able to install

I finished developing a Java application using netbeans. Now I want to pass it on to others. How can I change it so that the user can directly install and run the application without having to run it from the IDE or command line.

thank

+5
source share
4 answers

For a simple application without dependencies, a simple way is to create an executable JAR file.

JAR , , , . ZIP ( ), . ( , Eclipse , ). , ... . ( : / , .)

, " " ( ), .

, -, Java WebStart , , , .

+3

:

  • "" , , . . Googling , Wise.
  • JAR .
  • Java Web Start.

, JVM , .

, , , .

+4

, . , "" .

IZPack . , // ( ).

, .

+1

You can give JSmooth a try and see how it works for you. I have not used it before, but my colleague had several times, and he seemed to be pleased with it.

+1
source

All Articles