在windows中设置类路径

发布于 2024-12-08 05:21:12 字数 175 浏览 0 评论 0原文

我在环境变量中设置了类路径,我设置了一个名为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

剩一世无双 2024-12-15 05:21:12

从历史上看,您需要在 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.

假扮的天使 2024-12-15 05:21:12

您需要 (a) 显式列出 jar 文件,或 (b) 使用通配符类路径 (1.6+)。

You need to either (a) explicitly list the jar files, or (b) use a wildcard classpath (1.6+).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文