1 / 6

Update the PATH variable

Update the PATH variable. Trying to run the command: “javac Ex1.java” you’ve may encountered the error: “javac is not recognized as internal or external command, operable program or batch file”

Gideon
Download Presentation

Update the PATH variable

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Update the PATH variable Trying to run the command: “javac Ex1.java” you’ve may encountered the error:“javac is not recognized as internal or external command, operable program or batch file” To resolve this you need to add the path where the file javac.exe is located to the PATH of your system. The PATH is a list of all locations that the system will search by default while trying to locate some application.

  2. How to set the PATH permanently To set the PATH permanently, add the full path of the jdk1.7.0_<version>\bin directory to the PATH variable. Typically this full path looks something like C:\Program Files\Java\jdk1.7.0_<version>\bin. Set the PATH as follows on Microsoft Windows 7 (very similar on other Windows OS): 1. Right Click on “My Computer” > Properties

  3. 2. you’ll get the following window, click on “Advanced system settings”

  4. 3. Then you’ll get another window, click on “Environment Variables”

  5. 4. Then you’ll get another window, mark the line starting with “Path” and click “Edit…”

  6. 4. Add to the Variable value a semicolon (;) at the and of the line and the path to the directory containing the file “javac.exe”. 5. OK > OK…

More Related