Can Netbeans handle both 32-bit and 64-bit Java?

I am using a 64-bit version of Vista on my laptop with 4G of RAM, Ram is increased by 1.5G on a 32-bit version of Java. But if I completely switch to the 64-bit version of Java, the JDIC part will not work, so my question is: if I install both 32-bit and 64-bit versions of Java, can Netbeans easily switch between them? So if I run out of ram on 1.5G, I switch to 64-bit, but if I need to develop the JDIC part, I will return to 32-bit, is this possible with Netbeans?

==================================================== ========================

I just realized that I asked half the question, since the version (32/64 bit) of Netbeans is important. So my question should be: if I run the 64-bit version of Neatbeans (suppose it is available) and I have both versions of Java, can I switch between the two versions of Java for my projects in Netbeans?

+4
source share
2 answers

NetBeans works with both 64-bit and 32-bit JVMs. Eclipse can only work with a 32-bit JVM. I have a script to run Eclipse with 32-bit JVMs installed and NetBeans for a 64-bit or 32-bit JVM.

+3
source

You cannot switch the JVM in a running application. You will have to restart it, but you will certainly be able to run Netbeans in both JVMs.

+1
source

Source: https://habr.com/ru/post/1285927/


All Articles