My installation widget.zip zipfile contains the following:
- 32bitJava
- install.jar
- widgetinstaller.exe
- widgetinstaller.ini
- widgetinstaller.ico
To summarize:
- 32bitJava is a 32bit JRE downloaded from Oracle
- install.jar is the installer created by Izpack
- widgetinstaller.* are created by winrun4j providing an exe wrapper for the installer.
So with this setup I can install my application without user having to have a java runtime already installed.
However once installed the actual application also needs a java runtime to actually run. So at the moment a copy of 32bitJava is included as part of the izpack install, i.e it exists in install.jar and is installed at installation time.
But this means I have two copies of the JVM, and because the 32bitJava is larger than my actual application makes my download much too large.
So how can I copy the 32bitJava folder into the installation during/after installation instead of having to include it in install.jar ?