• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

installer for standalone application

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How can I develop a installer for my standalone java(swing) application
 
Greenhorn
Posts: 21
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
My advice is to use an available package to create an installer. I personally use NSIS, but you could also have a look at IzPack. Both are free.
 
Ranch Hand
Posts: 121
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all!

I want an installer that can install a desktop java application. I'd like the following features:

- install to multiple platforms: windows, mac, linux
- encrypt class files (or if not encypt, obfuscate)
- allow the program to operate for 30 days without a license, then help me to handle the purchase and deployment of a license for use after the 30 day trial period

Haven't done java development for a long time, and I'm totally out of touch with the marketplace. Any help on any of the above topics would be greatly appreciated! (Anybody know anything about BuildDesk or JInstaller (www.componio.com)?)
 
Ranch Hand
Posts: 242
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What do you mean by an installer. After you develop the application, can't you deploy the jar file into any of the desktop for the application to work. Please let me know as I am also a beginner and would like to know about it as I am also developing one swing application. Might be useful.
 
Joe McIntyre
Ranch Hand
Posts: 121
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You need to have the jre (= java runtime environment) installed on the machine before your application can run. Some installers allow you to bundle the jre with your application. I'd get into more detail but I don't know much about installers. I'm looking at JInstaller, which looks pretty good:

http://www.componio.com
reply
    Bookmark Topic Watch Topic
  • New Topic