在Java项目中,需要先引入MySQL的JDBC驱动包(mysqlconnectorjava),可以在项目的pom.xml文件中添加以下依赖:
<dependency> <groupId>mysql</groupId> <artifactId>mysqlconnectorjava</artifactId> <version>8.0.26</version> </dependency>
在Java代码中,使用Class.forName()方法加载MySQL驱动:
try { Class.forName("com.mysql.cj.jdbc.Driver"); } catch (ClassNotFoundException e) { e.printStackTrace(); }
使用DriverManager.getConnection()方法建立与MySQL数据库的连接,需要提供数据库的URL、用户名和密码:
String url = "jdbc:mysql://localhost:3306/数据库名?useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=UTC"; String username = "用户名"; String password = "密码"; Connection connection = null; try { connection = DriverManager.getConnection(url, username, password); } catch (SQLException e) { e.printStackTrace(); }
使用connection.createStatement()方法创建一个Statement对象,然后使用该对象执行SQL语句:
Statement statement = null; try { statement = connection.createStatement(); // 执行SQL语句,例如查询操作:String sql = "SELECT * FROM 表名"; ResultSet resultSet = statement.executeQuery(sql); // 执行SQL语句,例如更新操作:String sql = "UPDATE 表名 SET 字段名='新值' WHERE 条件"; int rowsAffected = statement.executeUpdate(sql); } catch (SQLException e) { e.printStackTrace(); } finally { if (statement != null) { try { statement.close(); } catch (SQLException e) { e.printStackTrace(); } } }
记得关闭数据库连接:
if (connection != null) { try { connection.close(); } catch (SQLException e) { e.printStackTrace(); } }