我不知道如何在Java项目中设置类路径。
这是我运行的代码:
try { Class.forName("com.ibm.db2.jdbc.app.DB2Driver");
} catch (ClassNotFoundException e) {
System.out.println("Please include Classpath Where your DB2 Driver is located");
e.printStackTrace();
return;
} System.out.println("DB2 driver is loaded successfully");
Connection conn = null;
PreparedStatement pstmt = null;
ResultSet rset=null;
boolean found=false;
try {
conn = DriverManager.getConnection("jdbc:db2:DB2PDBA","USERID","PASSWORD");
if (conn != null)
{
System.out.println("DB2 Database Connected");
}
else
{
System.out.println("Db2 connection Failed ");
}
我的错误是:
java.lang.ClassNotFoundException:com.ibm.db2.jdbc.app.DB2Driver
答案 0 :(得分:1)
当我们说将某些东西放入类路径中时,它的意思是:
您应该放置应用程序需要运行的相关jar文件 整个应用程序在项目中的某个位置。
请单击下面的链接创建一个DB2应用程序-> IBM Example about DB2
您唯一需要做的是: