日期:2014-05-16 浏览次数:20501 次
File file = new File("d:/ojdbc14.jar"); URLClassLoader loader = new URLClassLoader(new URL[] { file.toURI().toURL() }); Class clazz = loader.loadClass("oracle.jdbc.driver.OracleDriver"); Driver driver = (Driver) clazz.newInstance(); Properties properties = new Properties(); properties.put("user", "bcdl_zj"); properties.put("password", "bcdl_zj"); Connection con = driver.connect("jdbc:oracle:thin:@192.168.0.176:1521:orcl", properties); System.out.println(con);