0

Possible Duplicate:
How to make installer pack of Java swing Application Project?

I am working on java swing application in which i have to give html files to the client to browse them in swing API.

Now i want to create the setup for the project so that user could install the software on their computer and i want to include html files , java classes some jar files and ms access database also how could i use the path of directory created after the installation of software.

Please suggest the code if possible

Community
  • 1
  • 1
adesh
  • 1,157
  • 3
  • 18
  • 28

2 Answers2

1

Use Java Web Start to install (and automatically update) the app. itself. JWS also offers the ExtensionInstallerService that will provide a hook to invoking the DB installer. Here is a demo. of the installer service.

Community
  • 1
  • 1
Andrew Thompson
  • 168,117
  • 40
  • 217
  • 433
0

If you are going to install only on windows systems then try this:

http://www.jrsoftware.org/isinfo.php

Its simple to write scripts for the installer and it does everything a typical installer does.

sethu
  • 8,181
  • 7
  • 39
  • 65