在windows中设置类路径
我在环境变量中设置了类路径,我设置了一个名为 classpath 的用户变量,其值为 .;C:\Users\Borut\Downloads\httpcomponents-client-4.1.2-bin\lib
该目录充满了 .jar 文件。然而,当我通过 cmd 运行程序时,它仍然报告一个错误,表明该类中的包不存在。
I setup classpath in enviroment variables i set a user variable named classpath with value= .;C:\Users\Borut\Downloads\httpcomponents-client-4.1.2-bin\lib
the directory is full of .jar files. yet still when i run a program through cmd it reports an error that the package from the class does not exist.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从历史上看,您需要在
CLASSPATH
上包含 jar 文件本身,而不是它们所在的目录。在最近的 JRE 中,您可以使用通配符(即以/*
结尾的路径)来指示目录中的所有 jar。但是,如果您仅指定一个目录,则仅在该目录中搜索类文件和包; jar 文件被忽略。Historically, you've needed to include the jar files themselves, not the directory they're in, on the
CLASSPATH
. In recent JREs, you can use a wildcard (i.e., a path ending in/*
) to indicate all the jars in a directory. But if you indicate only a directory, then that directory is searched for class files and packages only; jar files are ignored.您需要 (a) 显式列出 jar 文件,或 (b) 使用通配符类路径 (1.6+)。
You need to either (a) explicitly list the jar files, or (b) use a wildcard classpath (1.6+).