0

Is it possible to run a project developed in a NetBeansIDE 64, installed in 32bit platform?

aldux
  • 2,774
  • 2
  • 25
  • 36
CLOUGH
  • 691
  • 11
  • 16

3 Answers3

1

If it is a pure Java application that uses no native code, and doesn't rely on any external libraries, processes or programs (as you said in your comment) - then the answer is yes; you can run a Java application in a 32-bit JRE (or 32-bit Netbeans) and/or a 64-bit JRE (or 64-bit Netbeans) on Windows, Mac, Linux and any other platform with a compatible Java run-time (where compatible is tied to the target class level by the compiler).

Elliott Frisch
  • 198,278
  • 20
  • 158
  • 249
0

If it doesn't use any libraries that care about whether it is 32 or 64 bit, than Netbeans won't have any issues with it. If you are using libraries that are going to have a problem with the switch, than that is where your problem will come from, not netbeans.

DejaVuSansMono
  • 787
  • 5
  • 14
0

Yes, agreed with Elliott, you can run any program that developed using Netbeans 64 into 32bit platform as long you are not using 64 bit library such as JDK/JRE.