How to Add Java Binary Folder to Windows Execution Path
I. Problem How to add the Java binary folder to the Windows execution path so that commands such as java and javac will become available ...
https://www.czetsuyatech.com/2020/04/java-add-binary-folder-to-windows-execution-path.html
I. Problem
How to add the Java binary folder to the Windows execution path so that commands such as java and javac will become available to the system.
II. Solution
II. Instruction
- In the Windows Explorer, right-click on This Computer.
- Click Advanced system settings.
- In the System Properties, click Environment Variables.
- In the Environment Variables, find the Path entry and hit Edit.
- Click New and add %JAVA_HOME%\bin. If in case a list is not displayed on your case add ;%JAVA_HOME%\bin at the end of the line.
- Click Ok.
- Run a Windows command by pressing the Windows Key and type "Command". Hit enter.
- Type "java -version" and hit enter to see the java version installed.
Post a Comment