Hi guys,
I would know if is possible compile a java desktop application in 32bit application from Windows 7 64bit using Netbeans.
Thx you for HELP.
Hi guys,
I would know if is possible compile a java desktop application in 32bit application from Windows 7 64bit using Netbeans.
Thx you for HELP.
Java doesn't build 32-bit or 64-bit applications - bytecode is portable across architectures.
If you rely on any native libraries, you'd have to potentially ship both versions of those - but the actual Java code won't need to be recompiled.
You don't have to build java code for 32-bit or 64-bit platforms. The code is compiled to byte code which is run by JVM. You can use 32-bit or 64-bit JVM to run your java code.
The only exception is native libraries that you might be using in your code. If there are any then you will have to manually compile those for the respective platform. Otherwise the java code is totally portable across 32-bit and 64-bit platforms.
Write once and run everywhere :-)