• 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

Distributing Application

 
Ranch Hand
Posts: 167
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is the correct procedure for distributing a Java app along with run time environment, etc. Assume user PCs have nothing regarding Java support.
Thanks.
 
"The Hood"
Posts: 8521
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There is no "correct" procedure.
There are tools available that will bundle the JRE along with your app code and associated files like properties and a bat file to kick off the application, and create an exe out of the whole mess. then you can put that on a Web page and the user can download the exe and start it, and it will install itself. the bat file to start the application should have the classpath setting stuff in it.

I have seen Installsheild used for this, but there are others out there.
On the other hand you could just jar up your app, and put out instructions on how to download the JRE and your app and let the user do it. Its cheaper, but more difficult for the end user.
 
Rob Levo
Ranch Hand
Posts: 167
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Cindy.
 
reply
    Bookmark Topic Watch Topic
  • New Topic