How can I indicate that to run the specific Java application that I created, you need to install a 32-bit JRE on your system? Further, how can I indicate that a Java application should use a 32-bit JRE, not a 64-bit JRE, if installed?
Background:
I created an application that uses a third-party 32-bit library. Application cannot work in 64-bit JRE.
I am going to distribute this application to many computers in my company, so I need to be able to specify the required JRE in the code or during the export process.
I use eclipse, Kepler to develop and create a java application.
source
share