为什么 classpath=/tomcat_lib/ 不起作用
大家好,
/tomcat_lib 下有一个 abc.jar。我需要在我的 def.java 中使用这个
我累了
javac -classpath /tomcat_lib/ -d ../classes def.java
但它不起作用
但是如果我使用它它会起作用
javac-类路径/tomcat_lib/abc.jar -d ....
任何人都可以帮忙解释一下吗?
HI guys,
There is an abc.jar under /tomcat_lib. I need use this in my def.java
I tired
javac -classpath /tomcat_lib/ -d
../classes def.java
but it doesn't work
But if it works if I use
javac -classpath /tomcat_lib/abc.jar
-d ....
Can anyone help explain it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要将 jar 添加到类路径中,您需要指定包含 .jar 文件的路径。
引用 Oracle.com 上的官方 Java SE 6 文档:
...以及来自 相同的文档:
To add a jar to your classpath, you need to specify the path up to and including the .jar file.
Quoting the official Java SE 6 documentation at Oracle.com:
...and from the "Folders and Archive Files" section of the same documentation: