tags:

views:

44

answers:

1

If I compile some java files using a 64 bit JDK and then make a JAR file out of them will the resultant JAR correctly work with a 32 bit JRE, or do I have to use a 32 bit JDK?

Thanks

+9  A: 

The resultant JAR will correctly work with a 32 bit JRE. You do not need to recompile your jar.

Julius Davies
Write Once, Run Anywhere.
Pablo Santa Cruz