找不到JDBC驱动程序

我有一个简单的JDBC代码。

static Connection c;
static PreparedStatement ps;

public static void initializeDB() throws IOException, ClassNotFoundException, SQLException {
    Properties prop = new Properties();
    prop.load(new FileInputStream("dbconn.properties"));
    String connurl = prop.getProperty("connurl");
    String driver = prop.getProperty("driver");
    String username = prop.getProperty("username");
    String password = prop.getProperty("password");
    System.out.println(driver); //prints "com.mysql.jdbc.Driver"
    Class.forName(driver);
    c = DriverManager.getConnection(connurl, username, password);
  • 但我越来越

    java.net.URLClassLoader上的java.lang.ClassNotFoundException:“com.mysql.jdbc.Driver”$ 1.run(URLClassLoader.java:202)位于java.net.URLClassLoader上的java.security.AccessController.doPrivileged(Native Method)。 findClass(URLClassLoader.java:190)at java.lang.ClassLoader.loadClass(ClassLoader.java:307)at sun.misc.Launcher $ AppClassLoader.loadClass(Launcher.java:301)at java.lang.ClassLoader.loadClass(ClassLoader .java:248)在testapp.DBUpdater.initializeDB(Testapp.java:71)处的testapp.Testapp上java.lang.Class.forName(Class.java:169)处的java.lang.Class.forName0(Native Method)。主(Testapp.java:38)

  • 从打印语句可以看出,属性值是完全访问的。 当我直接用字符串值替换变量时,它工作正常!

  • 我应该什么时候使用

    prop.load(new FileInputStream(System.getProperty(“dbconn.properties”)));

  • 当我从mysql连接器jar文件中查看Driver类时,我期待看到一些静态代码,但没有找到任何东西。


  • 它看起来像字符串的值为"com.mysql.jdbc.Driver" (注意双引号)而不是com.mysql.jdbc.Driver

    删除这些引号,它应该工作。


  • 尝试修剪属性的值。

  • 我会以静态方式加载属性。

  • 我不明白你为什么看这个JAR

  • 例:

    class Database {
    
        private final static Properties properties;
        private static Connection c;
        private static PreparedStatement ps;
    
        static {
            properties = new Properties();
            properties.load(new FileInputStream("dbconn.properties"));
        }
    
        public static void init() {
            String connurl = properties.getProperty("connurl").trim();
            String driver = properties.getProperty("driver").trim();
            String username = properties.getProperty("username").trim();
            String password = properties.getProperty("password").trim();
            Class.forName(driver);
            c = DriverManager.getConnection(connurl, username, password);
        }
    
    }
    
    链接地址: http://www.djcxy.com/p/33047.html

    上一篇: Cannot find the JDBC driver

    下一篇: java split source files