I have a Windows-based GUI application that I wrote as a
Java standalone application. I want to create a nice InstallShield installation set for it and make it as easy as possible for users to install on their Windows desktop. How do I install the Java JRE?
I can make the installation of the Java JRE as part of my install set. But others have suggested that I should check to see if the Java JRE is already loaded on the customer's machine.
My concern is...These will be relatively unsophisticated PC users. I DON'T want them to make any judgements about the Java JRE. I wouldn't have to worry about this if I programmed the application in Visual C++. So why should I have to worry about it with a Java app?
In fact, there is NO reason the end user needs to know that this app was written in Java. I want to avoid asking them "Is the Java JRE loaded? Where is the JAVA_HOME directory?" This would be silly to ask the typical noprogrammer I think.
Am I going to be able to create such a streamlined installation?