我开始使用 Eclipse IoT,在尝试创建 SQL 连接器时出现以下错误。我已经在 Windows 中添加了类路径,并按照https://stackoverflow.com/questions/8745872/classnotfoundexception-com-mysql-jdbc-drive中的建议将相应的 .jar 库添加到项目中。我不明白为什么我仍然收到此错误。有任何想法吗?
产生错误的代码:
public static void getConnection(){
try{
Class.forName("com.mysql.jdbc.Driver");
}
catch (ClassNotFoundException e){
System.out.print(" Class.forName cannot be found");
e.printStackTrace();
}
我明白了:
Class.forName cannot be foundjava.lang.ClassNotFoundException: com.mysql.jdbc.Driver
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:264)
at controller.establishConnection.getConnection(establishConnection.java:17)