NetBeans 12 32 Bit #5364
-
The company I work for is currently stuck on Java 8 32 bit because of external dependencies that can't be changed currently. I was looking on the website for the 32 bit downloads. I currently am running the following on my system:
The NetBeans information is: Is there someplace I can download the 32-bit versions of NetBeans 12? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
Well, it's https://netbeans.apache.org/download/nb120/nb120.html Though you need to download the binary zip. That works with 32 bit JVM-s as well. We never released a 32 bit installer. You might consider using NetBeans 12.6 as that is the last official build Supports Java 8 as runtime. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the answer. Unfortunately, I can't upgrade past Java 8. The company I work for has a lot of products developed in Java 8 32-bit. We plan to upgrade in the future, but right now we have a push to another design format for our products to minimize the use of Java on the client systems and relegating the use of Java to the server only. I tried to install NetBeans 12.4 & 12.5. According to the download website, Netbeans 12.6 requires JDK 11+. Netbeans 12.4 & 12.5 didn't find my OpenJDK Java 8 32-bit. It kept telling me that it needed a version of Java. |
Beta Was this translation helpful? Give feedback.
-
@jmccay-work I suggest you separate out the runtime JDK for the IDE from the JDK you need for projects. You can register alternative JDKs to work with (eg. your 32-bit Java 8) under If it helps to have a contained installation that runs on a local JDK, then check out the community installers - linked from main Apache NetBeans download pages and distributed by my company - https://www.codelerity.com/netbeans/
NetBeans 12.6 only supports running on JDK 8 if built from source. The Apache binaries only support JDK 11+. That wasn't the plan when preparing the release, but some issues were found. |
Beta Was this translation helpful? Give feedback.
-
@neilcsmith-net and @lkishalmi, this sounds like the best idea for now. I will look into doing that with my system. Thanks for all your comments and help. |
Beta Was this translation helpful? Give feedback.
@jmccay-work I suggest you separate out the runtime JDK for the IDE from the JDK you need for projects. You can register alternative JDKs to work with (eg. your 32-bit Java 8) under
Tools / Java Platforms
. I run the IDE on JDK 19 but still build and run some projects on JDK 8.If it helps to have a contained installation that runs on a local JDK, then check out the community installers - linked from main Apache NetBeans download pages and distributed by my company - https://www.codelerity.com/netbeans/
NetBeans 12.6 …