Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
javac db.java # no errors java -cp hsqldb.jar db
When I use the -cp option I get: "Error: Could not find or load main class db". My code works inside an ide but not in the console.
您已经通过-cp简单地包含 .jar 文件来定义类路径。您还需要声明包含 .class 文件的目录
-cp
例如,如果您的db.class文件在当前目录中 ( .)
db.class
.
java -cp hsqldb.jar:. db
(Unix) 或
java -cp hsqldb.jar;. db
(视窗)。注意平台之间的冒号/分号变化。