如何在Linux终端中使用外部jar文件编译java项目
我有一个项目,其中包含外部 jar 文件,我点击了此链接 http://www.wikihow.com/Add-JARs-to-Project-Build-Paths-in-Eclipse-%28Java%29 添加外部 java 路径。然后我尝试在终端中编译我的代码,但是我仍然收到有关 jar 文件不存在的错误。
我写了以下命令:(目前我在项目目录中,其中有三个名为 bin src 和 lib 的文件夹)
bash-3.2$ ls
bin lib README.txt src
bash-3.2$ javac -cp lib/jsoup-1.6.1.jar src/DayTradingStockBlog.java
bash-3.2$ java -cp .:lib/jsoup-1.6.1.jar src/DayTradingStockBlog
Exception in thread "main" java.lang.NoClassDefFoundError: src/DayTradingStockBlog (wrong name: DayTradingStockBlog)
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClassCond(ClassLoader.java:632)
at java.lang.ClassLoader.defineClass(ClassLoader.java:616)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:283)
at java.net.URLClassLoader.access$000(URLClassLoader.java:58)
at java.net.URLClassLoader$1.run(URLClassLoader.java:197)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
Could not find the main class: src/DayTradingStockBlog. Program will exit.
我应该如何解决这个问题?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在调用 java(但调用 javac)时,永远不要使用斜杠,斜杠是路径分隔符。如果 src 是你的包声明的一部分 - 在这种情况下是整个包声明,我敢打赌它不是,你会,而不是:
使用点:
但我猜这只是你创建类的地方,所以路径属于类路径:
您不能随意省略类名称中的路径,并将其附加到类路径,反之亦然 - 它必须适合您的包声明。
如果您声明一个包
foo
(它比 src 更有意义),您的类名不再是DayTradingStockBlog
而是foo.DayTradingStockBlog
。You never use slashes, which are path delimiters, in a call to java (but to javac). If src is part of your package declaration - in this case the whole package declaration, which I bet it is not, you would, instead of:
use a dot:
But I guess it is just the place where you created the class, so the path belongs to the classpath:
You aren't free to omit the path from the Class name, and append it to the classpath, or vice versa - it has to fit to your package declaration.
If you declare a package
foo
, (which has much more sense than src), your class name is no longerDayTradingStockBlog
butfoo.DayTradingStockBlog
.根据您的编辑,我建议您将所有类路径位置括在单/双引号内。也就是说,使其类似于
java -cp '.:lib/jsoup-1.6.1.jar' src/myClass。
在 Linux 中,类路径中的项目由冒号 (:) 分隔,而在 Windows 中,则由分号 (;) 分隔。
Based on your edit, I'd suggest you to enclose all classpath locations within single/double quotes. That is, make it like
java -cp '.:lib/jsoup-1.6.1.jar' src/myClass
.In linux, the items in the classpath are separated by a colon (:) and in Windows, it's a semicolon (;).
使用类路径 (-cp)
use classpath (-cp)
你应该将java文件和jar文件放在同一个目录中
示例:javac -cp jdbc.jar myClass.java
这对我有用
you should place the java file and jar file in the same dir
example: javac -cp jdbc.jar myClass.java
it works for me