I have created a simple java application and it uses some external resources (folders). How can I create an install shield that creates a folder installation (like C:\Program Files\MyApp) and copy the external resources to this destination? I’m using Eclipse.
I have created a simple java application and it uses some external resources (folders).
Share
Why not rather create a fully self-contained Jar file with embedded resources.
Put your resources in the source/package folder and use:
getResource()orgetResourceAsStream()to retrieve anURLorInputStreamof the resource:Extract a file from a different package in the Jar:
Or if it is in the same package as the current class:
If you are looking for a Java install shield/wizard have a look at these open source applications: