Classpath (Java)

From Wikipedia, the free encyclopedia

Jump to: navigation, search

The Classpath is an argument set on the command-line that tells the Java Virtual Machine where to look for user-defined classes and packages in Java programs.

Contents

See also: Java Classloader

Contrary to the classic dynamic loading behavior, when executing Java programs, the Java Virtual Machine finds and loads classes lazily (the bytecode of a class is loaded only when this class is first used). The virtual machine searches and loads classes in this order:

  • Bootstrap classes: the classes that are fundamental to the Java Platform (comprising the public classes of the Java Class Library, and the private classes that are necessary for this library to be functional).
  • Extension classes: packages that are in the extension directory of the JRE or JDK.
  • User-defined packages and libraries

By default only the packages of the JDK standard API, and extension packages are accessible without needing to set where to find them. The path for all user-defined packages and libraries must be set in the command-line (or in the Manifest associated with the Jar file containing the classes).

Suppose we have a package structure called org.mypackage containing the following classes : HelloWorld (main class), SupportClass, and UtilClass, the package being physically under the directory D:\myprogram (on Windows).

The corresponding physical file structure is :

D:\myprogram\
      |
      ---> org\  
            |
            ---> mypackage\
                     |
                     ---> HelloWorld.class       
                     ---> SupportClass.class   
                     ---> UtilClass.class     

To launch the program, we should use the following command :

java -classpath D:\myprogram org.mypackage.HelloWorld

where :

  • -classpath D:\myprogram set the path to the packages used in the program
  • org.mypackage.HelloWorld is the path of the main class

The Environment variable named CLASSPATH may be alternatively used to set the Classpath. For the above example, we could also use on Windows :

set CLASSPATH=D:\myprogram
java org.mypackage.HelloWorld

Now, suppose the program uses a supporting library enclosed in a Jar file called supportLib.jar, physically in the directory D:\myprogram\lib\.

The corresponding physical file structure is :

D:\myprogram\
      |
      ---> lib\  
      |     |
      |     ---> supportLib.jar
      |
      ---> org\  
            |
            ---> mypackage\
                     |
                     ---> HelloWorld.class       
                     ---> SupportClass.class   
                     ---> UtilClass.class     

We should use the following command-line option :

java -classpath D:\myprogram;D:\myprogram\lib\supportLib.jar 
     org.mypackage.HelloWorld

or alternatively :

set CLASSPATH=D:\myprogram;D:\myprogram\lib\supportLib.jar
java org.mypackage.HelloWorld

Suppose that our program has been enclosed in a Jar file called helloWorld.jar, put directly in the D:\myprogram directory. We have the following file structure:

D:\myprogram\
      |
      ---> helloWorld.jar 
      |
      ---> lib\  
            |
            ---> supportLib.jar

The manifest file defined in this Jar file has this definition:

Main-Class: org.mypackage.HelloWorld
Class-Path: lib/supportLib.jar

Note: It's important that the manifest file ends with either a new line or carriage return.

To launch the program, we can use the following command:

java -jar D:\myprogram\helloWorld.jar

It is not necessary to define the Main class, the Classpath to the program classes, and the support library classes, because they are already defined in the manifest file.

The syntax for specifying multiple library JAR files in the manifest file is to separate the entries with a space:

Class-Path: lib/supportLib.jar lib/supportLib2.jar

Being closely associated with the file system, the command-line Classpath syntax depends on the operating system. For example :

  • on Windows, the directory structure has a Windows syntax, and each filepath must be separated by a semicolon (";").
  • on Linux, Mac OS X, and more generally on all Unix-like operating systems, the directory structure has a Unix syntax, and each filepath must be separated by a colon (":").

This does not apply when the Classpath is defined in Manifest files, where each filepath must be separated by a space (" "), regardless of the operating system.

Advanced Search
Included Web Search Engines


Safe Search

close

Top Matching Results

Occasionally Search.com will highlight specialized results that are based on the context of your query. Examples of specialized results include specific links to news, images, or video.

Top Matching Results may highlight information from other Search.com pages, content from the CNET Network of sites, or third party content. The listings are based purely on relevance. Search.com does not receive payment for listings in this section but our partners that provide this data may get paid for listing these products.

Sponsored Links

This section contains paid listings which have been purchased by companies that want to have their sites appear for specific search terms and related content. These listings are administered, sorted and maintained by a third party and are not endorsed by Search.com.

Search Results

Search.com sends your search query to several search engines at one time and integrates the results into one list which has been sorted by relevance using Search.com's proprietary algorithm. You can customize the list of search engines included in your metasearch from the preferences.

The search engines that are used in your metasearch may allow companies to pay to have their Web sites included within the results. To view the Paid Inclusion policy for a specific search engine, please visit their Web site. Search.com does not accept payment or share revenue with any search engine partner for listings in this section.