• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

makning java application as exe file

 
Ranch Hand
Posts: 74
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear all,

How do you do?

Please i'd like to ask if there is any program that enable me to make an exe file that do the steps of installing the java application and embbed the JVM inside it to be able to run in any platform.

Thx and best regards

Aabed
 
Bartender
Posts: 4121
IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
No... if you make it an .exe it won't run on any platform - just windows.

There *are* ways to compile Java programs into executable files, but none of them produce platform independent executables. (You could produce an executable for each platform, though...)
 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I've used InstallAnywhere in the past to create stand-alone Java applications. You can use the program to create custom Installers for Java applications, such as specifying shortcuts, agreements, directories, etc... And it will allow you to create a stand-alone executable for your target platform. (Windows, Unix, etc...)
 
reply
    Bookmark Topic Watch Topic
  • New Topic