Java Classpath Windows: Difference between revisions

From Redbrick Wiki
Jump to navigation Jump to search
(Info on changing java classpaths on windows. Images to follow.)
 
mNo edit summary
Line 1: Line 1:
The Java Classpath is are the directories and files on the disk that the java development kit will scan when compiling a program.<br>
The Java Classpath is a list of the directories and files on the disk that the java development kit will scan when compiling a program.<br>
These directories and files contain classes that can then be used in your program.<br>


This can be added or modified on Windows by following the following steps.<br>
This can be added or modified on Windows by following the following steps.<br>

Revision as of 18:54, 7 October 2011

The Java Classpath is a list of the directories and files on the disk that the java development kit will scan when compiling a program.
These directories and files contain classes that can then be used in your program.

This can be added or modified on Windows by following the following steps.

1) Open My Computer (Computer)
2) Right click and select properties.
3) Select Advanced Systems Settings from the left navigation bar.
4) Open the Advanced Tab of the Systems Properties Window.
5) Select Environment Variables.
6) If class path already exists select it and click edit otherwise click new.
7) Enter CLASSPATH as the variable name.
As the variable value enter the following: "C:\Program Files\Redbrick;C:\Program Files\Redbrick\*;."


Now when you run javac it will check the C:\Program Files\Redbrick directory for any class or jar files and include them in your project.
You will need to close and reopen any terminals you are currently using as it does not affect the current session.