Download IBM Java JDK 8 for windows - java

I am looking to Download IBM Java JDK 8 for windows 10 OS or Windows Server 2012 R2 OS.
Does IBM provide JAVA JDK 8 software so that we can install and test it?
Or
Does IBM provide only AIX and Linux supported IBM Java 8 installation software?
I referred the IBM page, it contains only AIX, Linux version of Java installation software.
https://developer.ibm.com/javasdk/downloads/sdk8/

IBM says
The SDK is available only as part of an IBM product.
Which means follow the links at the end of the page you linked from your question, download Eclipse, use the JDK that will be installed with Eclispe. Then, if you don't want Eclipse, delete it and keep the SDK.
OR
You can use OpenJ9, which is the JDK used by the IBM SDK.
As an aside I have to wonder why you need the IBM JDK in particular.

Related

Glassfish server could not be started with JDK 16. Please select another Java SE platform

when I click on run, it displays this message in a dialog box.
' Glassfish server could not be started with JDK 16. Please select another Java SE platform.
And then it displays this error
Deployment error: Could not find Java SE Development Kit to start GlassFish Server
See the server log for details.
Is it a issue with glassfish version or jdk version? how can I fix this issue? any idea
You asked: "Is it a issue with glassfish version or jdk version?" - It's an issue with the combination of the GlassFish version and the JDK version that you are trying to use. For example, see here.
"GlassFish 6.2.5 ... officially supports JDK 11 ... runs on JDK 17 and JDK 18ea."
"GlassFish 6.1.0 ... supports JDK 11."
"GlassFish 6.0.0 ... only supports JDK 8."
And so on.
Going farther back in time:
"GlassFish 5.1 requires Oracle JDK 8 Update 144 or later."
Generally speaking, unless you have a good reason not to do so, you should try to use a Java LTS (long-term support) release. You can see a list of recent and older JDK releases, which shows which releases are LTS and which are not. LTS releases:
8
11
17
(But that does not mean GlassFish will not run on other versions. Follow the GlassFish release guidelines.)
You also tagged your question as a NetBeans question.
If you need to change the version of Java you are using in NetBeans, you can go to Tools > Java platforms > Add platform. But again, you may hit limitations where certain versions of NetBeans are not able to support certain versions of the Java JDK - so you need to check the NetBeans release guidelines for that.
For example for NetBeans 14:
"The Apache NetBeans 14 binary releases require JDK 11+, and officially support running on JDK 11 and JDK 17."
And going back to NetBeans 9:
"The main goals for this release are ... Java 9 and Java 10 Support."

Download Legacy JVM Version 1.8 for MAC High Sierra

I am trying to run Eclipse to develop Android apps. When I first opened Eclipse it provided a link to install legacy JVM from apple.com, after that was installed I am getting this error message
Version 1.6.0_65 of the JVM is not suitable for this product.
Version: 1.8 or greater is required
I installed the newer version (8u151) from java.com but that didn't help. I found the following link to download version 1.8 but that page has only the latest versions: http://www.oracle.com/technetwork/pt/java/javase/downloads/jdk8-downloads-2133151.html
Anyone figured out how to install Eclipse on Mac High Sierra?
I was able to get Eclipse work by installing the full
Java SE Development Kit 8u151 from http://www.oracle.com/technetwork/pt/java/javase/downloads/jdk8-downloads-2133151.html
java.com download or Apple's legacy JVM download did not work for Eclipse installation.
The last time this kind of thing bit me I was inadvertently installing the run-time Java (which is what Apple usually provides a link to) on my server, not the full Java SDK (which has the compilers and stuff you need to do developmentn).
I usually hunt for the full Java SE Development Kit at http://www.oracle.com/technetwork/java/javase/downloads/.
Scroll down until you see Download the Java SE Development Kit http://www.oracle.com/technetwork/java/javase/downloads/jdk-netbeans-jsp-142931.html

What version of visualvm works with Java 6?

I'm using Mac 10.9.1 and Java 1.6.45 . It is not an option for me to upgrade my Java version at this time. I want to use visualvm to analyze heap dumps, but the latest version on http://visualvm.java.net/download.html only works with Java 7 and above. What version of VisualVM will work with Java 6 and where can I find this mystical version?
VisualVM 1.3.6 works with JDK 6. You can download it from this page: http://visualvm.java.net/releases.html. You can also install JDK 7 next to JDK 6 and use VisualVM 1.3.7.
According to this Oracle site it should be a command-line tool built in to your JDK distribution. From here, it was first bundled in Java 6u7, so you should definitely have it.

How can I use JVM Client Mode on x64 operating system?

I need to run the Oracle JVM in the "client mode". Is there any option to do this on an x64 operating system?
I installed Oracle 7 JDK per apt-get. It installed the Oracle JDK and JRE x64 edition. So i have only /usr/lib/jvm/java-7-oracle/jre/lib/amd64/server directory and no amd64/client directory.
On the Oracle website, you can download the JRE Linux x64 and x86 packages, precompiled. I download them both and looked into the folders.
x64 package contains only amd64/server directory.
x86 package contains i386/server AND i386/client directories.
So, what can I do to use the client mode? Have I install the x86 edition of java? I think I can do this only manually and not with apt-get because it recognize that I have a x64 operating system.
Thanks!
AFAIK the 64bit version of the Oracle JVM only supports the server mode at the moment (my guess is we'll never see a client version). This FAQ would see to support that. I don't think the Open JDK project has a 64bit client version either but it's been a while since I checked: this post confirms my suspicion. It seems the server VM is as good as or better than any dedicated client VM would be.

install java jre 5.0

Where to download java jre 5.0 to install on my windows7 64 ,I have java 6.0 installed on my machine but I need test my application under jre 5.0.
Thanks
Follow the Previous Releases link on the Java SE downloads page. Here's the direct link for J2SE 5.0 downloads - look for the JRE download link and then select Windows x64 on the next page.

Categories