java -classpath or -cp 的设置和解释
classpath is a parameter—set either on the command-line, or through an environment variable—that tells the Java Virtual Machine or the Java compiler where to look for user-defined classes and packages.
Overview and architecture
Similar to the classic dynamic loading behavior, when executing Java programs, the Java Virtual Machine finds and loads classes lazily (it loads the bytecode of a class only when this class is first used). The classpath tells Javawhere to look in the filesystem for files defining these classes.
The virtual machine searches for 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, jre/lib/ext/
- 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).
Setting the path to execute Java programs[edit]
Supplying as application argument[edit]
Suppose we have a package called org.mypackage containing the classes:
- HelloWorld (main class)
- SupportClass
- UtilClass
and the files defining this package are stored physically under the directory D:\myprogram (on Windows) or /home/user/myprogram (on Linux).
The file structure will look like this:
Microsoft Windows | Linux |
---|---|
|
|
When we invoke Java, we specify the name of the application to run: org.mypackage.HelloWorld. However we must also tell Java where to look for the files and directories defining our package. So to launch the program, we use the following command:
Microsoft Windows | Linux |
---|---|
|
|
where:
java
is a java application launcher, a type of sdkTool(A command-line tool, such as java, javac, javadoc, or apt)- -classpath D:\myprogram sets the path to the packages used in the program (on Linux, -classpath /home/user/myprogram) and
- org.mypackage.HelloWorld is the name of the main class
Setting the path through an environment variable[edit]
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
The rule is that -classpath
option, when used to start the java application, overrides the CLASSPATH
environment variable. If none are specified, the current working directory is used as classpath. This means that when our working directory is D:\myprogram\
(on Linux,/home/user/myprogram/
), we would not need to specify the classpath explicitly. When overriding however, it is advised to include current folder "."
into the classpath in the case when loading classes from current folder is desired.
The same applies not only to java launcher but also to javac, the java compiler.
Setting the path of a Jar file[edit]
If a program uses a supporting library enclosed in a Jar file called supportLib.jar, physically in the directory D:\myprogram\lib\ and the corresponding physical file structure is:
- D:\myprogram\
- |
- ---> lib\
- |
- ---> supportLib.jar
- |
- ---> org\
- |
- --> mypackage\
- |
- ---> HelloWorld.class
- ---> SupportClass.class
- ---> UtilClass.class
the following command-line option is needed:
- 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
Adding all JAR files in a directory[edit]
In Java 6 and higher, one can add all jar-files in a specific directory to the classpath using wildcard notation.
Windows example:
- java -classpath ".;c:\mylib\*" MyApp
Linux example:
- java -classpath '.:/mylib/*' MyApp
This works for both -classpath
options and environment classpaths.
Setting the path in a Manifest file[edit]
Suppose that a 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
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 [app arguments]
This will automatically start the org.mypackage.HelloWorld
specified in the Main-Class
with the arguments and user cannot replace this class name using java -jar
options. The Class-Path
meantime describes the location of the supportLib.jar
file relative to the location of thehelloWorld.jar
. Neither absolute file path (which is permitted in -classpath
parameter on the command line) nor jar-internal paths are supported. This particularly means that if main class file is contained in a jar, org/mypackage/HelloWorld.class
must be a valid path on the root within the jar.
Multiple classpath entries are separated with spaces:
- Class-Path: lib/supportLib.jar lib/supportLib2.jar
OS specific notes[edit]
Being closely associated with the file system, the command-line Classpath syntax depends on the operating system. For example:
- on all Unix-like operating systems (such as Linux and Mac OS X), the directory structure has a Unix syntax, with separate file paths separated by a colon (":").
- on Windows, the directory structure has a Windows syntax, and each file path must be separated by a semicolon (";").
This does not apply when the Classpath is defined in manifest files, where each file path must be separated by a space (" "), regardless of the operating system.
Diagnose[edit]
Application programmers may want to find out/debug the current settings under which the application is running:
- System.getProperty("java.class.path")
- linux 分隔符是冒号: windows分隔符是分号;
将所以jar包的分号换成冒号即可- Java classpath 和 classpath引入和不引入星号(*) 区别:
classpath 不引入星号:如:D:\abc\ 只会到你的class路径中查找找文件;
classpath 引入星号*: 如:D:\abc\* 不仅包含class路径,还包括jar文件中(class路径)进行查找.
java -classpath or -cp 的设置和解释的更多相关文章
- java classpath批量设置shell脚本
java classpath批量设置shell脚本 注意:linux bash jar文件之间的分隔符是':' export JAR_HOME=path to directory which ...
- java classpath import package 机制 @Java的ClassPath, Package和Jar
java classpath import package 机制 從一個簡單的例子談談package與import機制 基本原則:為什麼需要將Java文件和類文件切實安置到其所歸屬之Package ...
- java classpath深入详解(转)
http://developer.51cto.com/art/200509/2786.htm 设置类路径 结构 可通过对 JDK 工具使用 -classpath 选项(首选方法)或设置 CLASSPA ...
- JAVA classpath, 纠正我一直以来错误的认知
如何调在CLI中使用java tool(JDK中的java命令)调用一个打包在jar中的类,我想大多数人都能给出笼统的方案: java -classpath xxxxx com.test.classA ...
- 【转】classpath和环境变量设置
http://www.360doc.com/content/12/0722/14/820209_225797366.shtml 在没有设置环境变量之前,我们可以通过直接在应用程序中加带相关信息来运行我 ...
- JAVA classpath jar问题[zz]
classpath问题可以说是所有初学者头疼的问题,偶也一样. 1) classpath的作用: 它的作用就事让java找到你所要执行,或你拥有的类. 2) classpath的设置: 设置cla ...
- IntelliJ IDEA 中 右键新建时,选项没有Java class的解决方法和具体解释
我是在别人问我的时候,才发现还可以有这个问题,主要是他新项目直接打开,什么都没配置,就打算新建文件,其实可以直接看编辑器右下角的event log,那个对话框点开的话,可以add as maven p ...
- classpath和环境变量设置(转)
classpath和环境变量设置(转) 在没有设置环境变量之前,我们可以通过直接在应用程序中加带相关信息来运行我们 的程序.比如,我们可以这样开始运行一个java程序: C:\jdk1.3.1\bin ...
- java classpath getResource getResourceAsStream
1.classpath 用于指定java运行时,jvm寻找class文件以及jar文件的存储目录.jvm依据classpath中出现的jar文件以及目录,依次寻找,直到找到指定class文件. 例:j ...
随机推荐
- “Hello world!”团队第三周贡献分规则
一.贡献规则制定: (1)基础分:9 , 9 , 8 , 7 , 7 , 7 , 6(按在本次编程中承担模块的重要度制定,某一模块重要度的认定通过组内开会讨论决定) (2)会议分:每人没出勤一次会议记 ...
- 初学c#(又要打代码了好难)
因为我原来从没有学过C#,所以要重新看一个语言的基本语法,仔细阅读了老师的作业要求,发现第一个10分的作业如果要用c语言写我是可以完成的,于是定个小目标就是在周日前完成作业的第一步.今天我在菜鸟教程的 ...
- 【转】c++面试基础
1,关于动态申请内存 答:内存分配方式三种: (1)从静态存储区域分配:内存在程序编译的时候就已经分配好,这块内存在程序的整个运行期间都存在. 全局变量,static变量. (2)在栈上创建:在执行函 ...
- SDUST OJ 时间类的加、减法赋值运算
Problem F: 时间类的加.减法赋值运算 Time Limit: 3 Sec Memory Limit: 128 MBSubmit: 3801 Solved: 2210[Submit][St ...
- POSIX线程学习
一.什么是线程 在一个程序中的多个执行路线就叫做线程.更准确的定义是:线程是一个进程内部的一个控制序列.所有的进程都至少有一个线程.当进程执行fork调用时,将创建出该进程的一份新副本,这个新进程拥有 ...
- Tomcat服务器学习和使用(一)
一.Tomcat服务器端口的配置 Tomcat的所有配置都放在conf文件夹之中,里面的server.xml文件是配置的核心文件. 如果想修改Tomcat服务器的启动端口,则可以在server.xml ...
- java---Map接口实现类
Map是一个双列集合接口,如果实现了Map接口,特点是数据以键值对形式存在,键不可重复,值可以重复.java中主要有HashMap.TreeMap.Hashtable.本文主要介绍Map的接口方法: ...
- Python2爬虫获取的数据存储到MySQL中时报错"Incorrect string value: '\\xE6\\x96\\xB0\\xE9\\x97\\xBB' for column 'new' at row 1"的解决办法
由于一直使用python3进行编码,在使用Python2时,将爬虫数据连接数据库进行存储时,出现如上的报错,经查资料 是数据库编码问题. 如下转自:http://www.cnblogs.com/liu ...
- Go语言【第六篇】:Go循环语句
Go语言循环语句 在不少实际问题中有许多具有规律性的重复操作,因此在程序中就需要重复执行某些语句,以下为大多数编程语言循环程序的流程如: Go语言提供了以下几种类型循环处理语句: 循环类型 描述 fo ...
- BZOJ4000 TJOI2015棋盘(状压dp+矩阵快速幂)
显然每一行棋子的某种放法是否合法只与上一行有关,状压起来即可.然后n稍微有点大,矩阵快速幂即可. #include<iostream> #include<cstdio> #in ...