你好我试图通过类加载器加载我的jdbc潜水员
这里我是代码但是如果可能的话我会得到这个错误而不是给我一些例子
我不知道如何设置类路径变量
我正在制作一个数据库应用程序,这个应用程序需要一次又一次地连接数据库,我想把这个应用程序交给我的朋友,但我的朋友不知道类路径,他就像普通用户一样,
我的应用程序可以连接4种类型的数据库MS-Access,MySQL,Oracle,SQLlite ...... 在用户系统中我必须设置5个类路径变量并提供5个jar文件
如果我给这个应用程序100个人而不是他们设置了类类路径变量
我可以在我的应用程序中包含jar文件但是如何动态设置类路径.... 请提供一些例子......
package classload;
import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLClassLoader;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class ClassLoad {
static Connection con;
public static void main(String[] args) {
File jar = new File("C:\\query\\Driver.jar").getAbsoluteFile();
if(jar.exists()){
System.out.print("File exits");
}
URL urls[] = null;
try {
urls = new URL[] {
jar.toURI().toURL()
};
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
ClassLoader cl = new URLClassLoader(urls);
try {
Class.forName("com.mysql.jdbc.Driver", true, cl);
con=DriverManager.getConnection("jdbc:mysql://localhost", "root", "anil");
Statement stm=con.createStatement();
ResultSet result=stm.executeQuery("select *from actor");
while(result.next()){
System.out.print(result.getInt(1)+" "+result.getString(2)+" "+result.getString(3));
System.out.println("");
}
} catch (SQLException e) {
System.out.println(e);
}catch(ClassNotFoundException e){
System.out.println(e);
}
}
}
例外是
java.sql.SQLException: No suitable driver found for jdbc:mysql://localhost
答案 0 :(得分:0)
只需使用One-Jar将应用程序和所有依赖项打包到单个胖jar中。你的解决方案并不好。您的朋友必须使用与您相同的文件夹结构才能使其正常工作。
答案 1 :(得分:0)
此错误可能是因为您的项目中未包含所需的jar文件mysql-connector。尝试包含jar文件,如here所示。并尝试使用此代码加载Driver类:
Class.forName("com.mysql.jdbc.Driver");
con=DriverManager.getConnection("jdbc:mysql://localhost:3306/jlcstudents","root","password");