### (7)Java连接MySQL数据库 使用Java连接MySQL数据库,需要使用第三方jar包,mysql-connector-java-5.1.47.jar,并创建连接工具类,测试连接是否成功 ```java package cn.tellsea.utils; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; /** * MySQL连接工具类 * @author Tellsea * */ public class MysqlUtils { /** * 连接地址 */ private static String url = "jdbc:mysql://localhost:3306/eclipse-demo"; /** * 连接用户名 */ private static String userName = "root"; /** * 连接密码 */ private static String password = "123456"; /** * 连接驱动 */ private static Connection conn = null; /** * 获得连接驱动 * @return */ public static Connection getConnection() { if (null == conn) { try { Class.forName("com.mysql.jdbc.Driver"); conn = DriverManager.getConnection(url, userName, password); } catch (ClassNotFoundException e) { System.out.println("MysqlUtils 类未发现异常"); e.printStackTrace(); } catch (SQLException e) { System.out.println("MysqlUtils SQL异常"); e.printStackTrace(); } } return conn; } public static void main(String[] args) { System.out.println(getConnection()); } } ``` 连接成功时,控制台输出日志类似以下格式 ``` com.mysql.jdbc.JDBC4Connection@2077d4de ```