Jon
Jon

Reputation: 4045

Java 64 bit JDK question

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

Upvotes: 6

Views: 373

Answers (1)

Julius Musseau
Julius Musseau

Reputation: 4155

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

Upvotes: 11

Related Questions