Showing posts with label jdk. Show all posts
Showing posts with label jdk. Show all posts

Thursday, January 5, 2023

[java] [jdk] install java 8 or java 1.8 (jdk-8u381)

 


(1) Download JDK Installer

https://www.techspot.com/downloads/5198-java-jre.html



(2) Run JDK Installer

Specify the target installation folder.

e.g. C:\Program Files\Java\jdk-1.8\



Wait for the process to be completed.


Click Close.


(3) Register Path To Windows Environment (Console Approach)

Using Console command (administrator privilege mode), add/update system environment variables with the -m switch.

setx JAVA_HOME -m "C:\Program Files\Java\jdk-1.8"

setx -m PATH "%PATH%;%JAVA_HOME%\bin";




Open another console window and test.








Read More

[java] [jdk] [jre] download jdk jre

 



Reference

https://gist.github.com/wavezhang/ba8425f24a968ec9b2a8619d7c2d86a6?permalink_comment_id=4239312

Read More