2

Can i create a stand alone window application in eclipse using java, which later can be convert into an .exe file?
please help me regarding this issue

mjv
  • 73,152
  • 14
  • 113
  • 156
Naimur
  • 21
  • 1
  • 2

5 Answers5

1

Yes, there exist "Ahead-of-Time" compilers such as GNU compiler for Java which serve this purpose.
There are also commercial products such as Excelsior Jet.

mjv
  • 73,152
  • 14
  • 113
  • 156
1

You can create an executable jar, and then wrap it into an exe using launch4j

Valentin Rocher
  • 11,667
  • 45
  • 59
0

IMO your best option is something like izpack2exe - it creates an exe wrapper around a jar file, making it look like a native app to Windows users.

Bozhidar Batsov
  • 55,802
  • 13
  • 100
  • 117
0

Yes, You can create your application into an executable one by using JAR. For that your project convert into a executable jar file. It runs your application like other normal applications.

Venkat
  • 20,802
  • 26
  • 75
  • 84
0

yes why not you can create stand alone application by using eclipse and you can create jar of this application .

you can create .exe file by using jar wrapper software it is an open source software.

Sanjeev
  • 1,087
  • 8
  • 18
  • 27