java -cp . JdbcPostgresqlConnection
Vì vậy, rõ ràng, thứ duy nhất trong classpath là thư mục hiện tại (.
). Trình điều khiển jar postgresql không. Bạn cần thêm nó vào classpath:
java -cp .:/path/to/driver.jar JdbcPostgresqlConnection
trên Linux / MacOS hoặc
java -cp .;c:\path\to\driver.jar JdbcPostgresqlConnection
trên Windows.