classpath

编程入门 行业动态 更新时间:2024-10-27 07:26:02
本文介绍了classpath - 从命令行运行java程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

使用以下命令编译好我的代码:

My code compiled fine with the following command:

javac -cp../lib/*AvroReader.java

(lib是我放我的jar文件的地方)

(lib is where i put my jar files)

在运行时我得到一个以下行中的 ClassNotFoundException :

At run time I get a ClassNotFoundException on the following line:

DatumReader<?> dtmrdr = new GenericDatumReader();

它说无法找到 org.apache.avro.generic。 GenericDatumReader 即使我已导入它。

It says it can't find org.apache.avro.generic.GenericDatumReader even though I've imported it.

为什么会这样?

谢谢!

推荐答案

导入与加载类或设置CLASSPATH无关。

Importing has nothing to do with loading classes or setting CLASSPATH.

试试这个:

java -cp .;../lib/* Generator

使用点'。'作为CLASSPATH中的第一个条目假设 Generator.class 文件存在于运行java的目录中, / lib 是一个级别从该目录。如果这两个都不正确,请根据需要进行调整。

Using the dot '.' as the first entry in the CLASSPATH assumes that the Generator.class file exists in the directory from which you're running java, and /lib is one level up from that directory. Adjust as needed if both of these are not correct.

更多推荐

classpath

本文发布于:2023-11-13 21:53:33,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1585418.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:classpath

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!