No suitable driver found for jdbc

一是:连接URL格式出现了问题

(Connection conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/XX","root","XXXX")

二是:驱动字符串出错(com.mysql.jdbc.Driver) //这个自己不要随便改
三是:Classpath中没有加入合适的mysql_jdbc驱动
四是:没有添加jar程序驱动包的话编译的时候发现以下问题:

Sorry,can`t find the Driver! 

可以参考如下解决方案:

http://www.cnblogs.com/taoweiji/archive/2012/12/11/2812295.html

你可能感兴趣的:(No suitable driver found for jdbc)