如何使用Java

时间:2018-12-01 15:00:39

标签: java db2 classpath

我不知道如何在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

1 个答案:

答案 0 :(得分:1)

当我们说将某些东西放入类路径中时,它的意思是:

  

您应该放置应用程序需要运行的相关jar文件   整个应用程序在项目中的某个位置。

请单击下面的链接创建一个DB2应用程序-> IBM Example about DB2

您唯一需要做的是:

  1. 将此添加到您的项目中
  2. 更改凭据和数据库信息
  3. 将db2 jdbc jar文件添加到您的项目中