-2

When compiling a Java-Class in a 32bit environment ( JDK ) does this class also run on a 64bit JRE ? Or do I have to compile the class in a 64bit JDK ?

The class does not have any JNI ( Java native Interface ).

regards

mcfly soft
  • 11,289
  • 26
  • 98
  • 202

1 Answers1

1

yes, it does. the bytecode does NOT depend on the architecture of the environment (the clarification of JNI helped a lot in giving a clear answer).

rmalchow
  • 2,689
  • 18
  • 31