The latest versions of Java JDK (Java Development Kit) no longer include the Java Runtime Environment (JRE) by default. If you’re working with newer Java versions, you’ll need to install JRE separately on your Windows system.
However, if you’ve installed Java SE Development Kit 8 (JDK 8), it already comes bundled with JRE 8 — so you don’t need to install it manually.
For all other Java versions, you’ll have to download and install JRE separately. Don’t worry — the process is simple. Let’s walk through it step by step.
What Is Java JRE?
The Java Runtime Environment (JRE) provides the libraries, Java Virtual Machine (JVM), and other components required to run Java applications.
While the JDK is mainly for developers who compile and build Java programs, the JRE is for users who only want to run existing Java applications or software built in Java.
How to Install Java JRE on Windows 11
Before installing JRE, make sure you have Java JDK already set up on your system. Once that’s done, follow these steps to download and install JRE:
Step 1: Visit the Official Oracle Website
- Open any web browser and go to the Oracle Java Downloads page.
- Under the Java SE 8 section, look for Java SE Development Kit 8u411 (or the latest update).
- Select Windows as your operating system.
Step 2: Download the JRE Installer
- Choose the Windows x64 Installer (.exe) or Windows x86 Installer, depending on your system architecture.
- Accept the Oracle Technology Network License Agreement for Oracle Java SE.
- Click the Download button.
Note: You’ll be redirected to the Oracle sign-in page. Log in with your Oracle account to proceed. If you don’t have one, you can create a free account in just a few minutes.
Step 3: Install Java JRE
- Once the installer file is downloaded, double-click it to start the installation.
- Click Install on the setup window.
- Wait for the installation process to complete.
- Once finished, click Close to exit the setup wizard.
Congratulations — you’ve now installed Java JRE on your Windows 11 system!
How to Set Up Java JRE in Windows 11
After installation, you’ll need to add the JRE path to your Windows Environment Variables so the system can recognize it properly.
Follow these steps:
- Open File Explorer and go to:
C:\Program Files\Java - Open the JRE folder (for example,
jre1.8.0_411), then open the bin folder. - Copy the folder path from the address bar (it should look something like this):
C:\Program Files\Java\jre1.8.0_411\bin - Now, search for Edit the system environment variables in the Windows search bar and open it.
- In the System Properties window, click the Environment Variables button.
- Under the System Variables section, select the Path variable and click Edit.
- In the new window, click New and paste the copied JRE bin path.
- Click OK to save your changes, and close all the windows.
Verify the JRE Installation
To confirm everything is working:
- Open Command Prompt and type:
java -version - You should see the version information of your installed JRE.
If you see the version number displayed successfully, your JRE is set up correctly!
Conclusion
That’s it — you’ve successfully installed and configured Java JRE on Windows 11.
If you still face any issues with environment variables or Java setup, check out our detailed guide on how to set up environment variables for Java in Windows 11. Now, you’re ready to run Java-based applications smoothly on your Windows system!