Is Java 1.4 64 bit supported in Windows 7 (x64)? - java

Is Java 1.4 64 bit supported in Windows 7 (x64)?
I installed it and installer says it cannot be installed.

The earliest supported Java Development Kit supported in Windows 7 was SE 6.18.
From the Wikipedia article:
No security fixes; Hotspot VM 16; support for Ubuntu 8.04 LTS Desktop Edition, SLES 11, Windows 7, Red Hat Enterprise Linux 5.3, Firefox 3.6, VisualVM 1.2; updated Java DB; many performance improvements

As far as I can see the 64 bits Windows version of JDK 1.4 offered on Sun's(now Oracle) website is for the Itanium architecture (filename suffix ia64). The 64 bits processors produced by Intel that are most popular today use another architecture (filename suffix x64).
Binaries for an Itanium will not run on eg Xeon processors.

You should use JDK 1.7. Its only a way better for Win 7

Related

jdk won't install on Intel Atom

I'm trying to install Oracle jdk 17 on my netbook but with no success.
The installer says that the processor (Intel Atom Z3735F) is not supported.
On my desktop Intel i5 the same package is working fine.
I need Java on the netbook to bring at school.
Edit:
The netbook is running on Win 10 Home 32bit on Atom 64 bit processor.
I did a fast research I found out that the CPU (processor) you're rocking on your netbook is quite outdated today - it's from 2014 (check Intel Atom Z3735F on the official website). But it surprisingly should not be the issue (well, it might be - some instructions might be outdated, but I don't think that's the problem), because it actually is 64-bit CPU (it support 64-bit instruction set and it can address more memory - thanks to the wider address bus, OS has to support this as well). Since the new Java JDK 17 LTS is for x64 (64-bit) systems only, and you said that the installer reports that it's not supported on your device. I think that you're not using 64-bit operating system (OS). Do you think this could be the issue? You could easily find out by just easily looking at the task manager to see how much GB (gigabytes) of RAM you got. If it's 4 GB or less, then it's quite obvious thing. To make yourself sure, just type out systeminfo command to the CMD (if you are on Windows) and there under System Type record you will see what type you got (x86-based PC or x64-based PC).
Edit: If you are looking for the latest JDK release by Oracle that supports 32-bit systems, then JDK 13 would probably be the best go for you. If you don't need the features introduced in these newer releases, then I would recommend Java JDK 11 LTS, because it's going to be supported until September 2026. And as mentioned by matt in the answer, there is also JDK 17 LTS for x86 systems (32-bit) by Adoptium. Well, or reinstall the 64-bit OS, but that is probably the hardest option.
Thank you all for pointing me to the right direction.
The issue was caused by the 32bit Os
As suggested by #matt , I installed Adoptium JDK17 x86 that solved my problem.

OpenJdk 8 for windows 64 bit

We are planning to migrate to OpenJDK 8, but we are only finding binaries for window 7 in BCD license.( Oracle Binary Code License ) on https://jdk.java.net/java-se-ri/8
We are looking for all windows compatible versions of open JDK and is BCD license that can use in production ( as Free to use)?

How to get JDK 8 - 32 bit for Mac OS X for Openhab development?

According to openhab tutorial they said that openhab developers should use JDK 8 - 32 bit for Mac OSX, How can I install JDK 8 - 32 bit, the only available version of JDK 8 is 64 bit !
I believe you have misread the documentation. This page notes that you must use 32-bit Java on ARM chips, rather than 64-bit.
Please use the 32-bit version of the JVM for ARM platforms, even on 64-bit operating systems. Serial connections won't work with a 64-bit JVM, preventing bindings like Z-Wave from functioning.
ARM chips are used in many of the home automation devices and used in computers such as the Raspberry Pi. But ARM chips are not used in Macs, which currently use 64-bit Intel Core chips.
According to this Question, Java apps are agnostic regarding their host OS being 32-bit or 64-bit. Only native-code libraries called from Java may care about 32/64 bits of the host OS.
I’m not a user of OpenHAB, so I’m not certain
I give up… Stack Overflow is losing my edits.
All the recent Macs run 64-bit macOS.
If you still want to install JDK32 bit, you can have any OS using a virtual machine (VMware Fusion, Parallels, or VirtualBox) and then install JDK inside that VM.
For the openHAB recommended is to use Zulu.
More accurate answer provided by: Basil Bourque

Amazon Corretto 11 32 bits

Our java application is running on Windows platform and it uses 32 bit Windows dlls (which are difficult to port to 64 bit).
Is there any chance a Windows x86 release can be provided for Amazon Corretto 11 (like Corretto 8)?
Please advise. Thanks a lot.
Since JDK 9, almost all available JDKs are 64 bit only. Azul Systems had a JDK 10 32-bit for Windows that I downloaded and used, however when I searched the Internet just now, I couldn't find it.

Trouble in installing j2se 1.4 or higher

I have a intel core i3 (not the 2nd generation i3) processor and windows 7 64 bit OS.
Which j2se 1.4 should i install from http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javase14-419411.html#j2sdk-1.4.2_30-sol-JPR this website
There's Windows versions available of update 19 here: http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javase14-419411.html#j2sdk-1.4.2_19-oth-JPR
They were never designed to work on Windows 7 though, let alone 64 bit - so I can't guarantee they'll work (and if they don't then Oracle won't do anything to try to make them work because of the age!)
I'd also seriously question your motive for requiring 1.4, and recommend you migrate to a current, supported version of the JDK. If nothing else remember there's no security updates, so any exploits that are found won't be patched.
You shouldn't be installing JDK 1.4 at all - it's well past its supported life.
I took a peek at the link you provided. It looks to me like Oracle will only make older versions of the JDK available for Solaris. I doubt that there was ever a version that ran on that version of Windows. Why port it now?
You're out of luck.
I'd recommend an upgrade to JDK 6 or higher. JDK 7 is the latest standard. You should be keeping up with your JDK, just as you are with your operating system.
You can download a 32-bit version of Java from http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javase14-419411.html
I use such a 32-bit Java on a regular basis under Windows 7 64-bit directly from the command line.
That said, newer versions of Java perform better and you should only use Java 1.4 if you need to support it or have software that explicitly requre Java 1.4.
The latest version of Java 7 supports 64-bit and is tested under Windows 7.

Categories

Resources