Videos
Where can I download Java 8?
macos - How to install Java 8 on Mac - Stack Overflow
When I go to download Java from Oracle it's Java 8
Can't download Java 8 without an Oracle account?
I want to use forge for 1.16.5 since the mods I really want are only on that version, and I can just mod in 1.17 stuff. I'm on a new laptop, and it didn't have any Java stuff installed. I installed the latest version of Java fine, but it turns out it was the wrong one for what I needed and only works with Forge 1.17.1 and 1.17.1 JAR files.
I found the link to get the Java SE Development Kit 8 Download, but this time it's asking me to log in to do it. Alright, sure, not that big a deal, I'll make an account.
The problem is, to make an Oracle account I apparently need to give them my work information?! Never mind that I'm a stay-at-home spouse so I couldn't even if I wanted to. I'm certainly not giving them my personal home info. Here's the create an account page so you can see exactly what I mean. It's all required info to create an account.
Is there a way to create an account without all this nonsense? Or possibly somewhere else I can download Java 8?
EDIT: Bonus question--of all the available mods for backporting 1.17 stuff, are there any specific ones y'all would recommend? I've found, like, five.
Oracle has a poor record for making it easy to install and configure Java, but using Homebrew, the latest OpenJDK (Java 14) can be installed with:
brew install --cask adoptopenjdk8
For the many use cases depending on an older version (commonly Java 8), the AdoptOpenJDK project makes it possible with an extra step.
brew tap adoptopenjdk/openjdk
brew install --cask adoptopenjdk8
Existing users of Homebrew may encounter Error: Cask adoptopenjdk8 exists in multiple taps due to prior workarounds with different instructions. This can be solved by fully specifying the location with brew install --cask adoptopenjdk/openjdk/adoptopenjdk8.
Note: Oracle Java 8/9/10 is no longer available for public download (license change).
First install and update brew from Terminal:
bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew tap homebrew/cask-versions
brew update
NEW as of June 2019
To install the JDKs from AdoptOpenJDK:
brew tap adoptopenjdk/openjdk
brew install --cask adoptopenjdk8
brew install --cask adoptopenjdk9
brew install --cask adoptopenjdk10
brew install --cask adoptopenjdk11
OLD
Java 8:
brew install --cask java8
Java Latest:
brew install --cask java