I need to ship a Java product with JRE included with it but I don't want the user to tackle the installation choices. My requirements are:
- JRE installation in a sub-folder of my application so that I can use relative paths in my
.batand.shfiles. - Installation should not mess with existing JREs on the system.
- Installation process should be as simple as possible.
Question: Can I simply unzip a JRE folder on to the client's machine without running the installer? If, no, what else can I do to keep the process as painless as possible?