java连接mysql数据库
时间: 2023-06-24 15:06:04 浏览: 70
要在Java中连接MySQL数据库,您需要遵循以下步骤:
1. 下载并安装MySQL JDBC驱动程序:您可以从MySQL官方网站下载MySQL JDBC驱动程序,然后将其添加到您的Java项目中。
2. 导入必要的类:导入java.sql包中的类以及MySQL JDBC驱动程序中的类。
3. 建立连接:使用以下代码建立与MySQL数据库的连接:
```
String url = "jdbc:mysql://localhost:3306/数据库名称";
String user = "用户名";
String password = "密码";
Connection conn = DriverManager.getConnection(url, user, password);
```
4. 执行SQL查询:使用Statement或PreparedStatement对象执行SQL查询。
完整示例代码:
```
import java.sql.*;
public class MySQLExample {
public static void main(String[] args) {
try {
// 加载MySQL JDBC驱动程序
Class.forName("com.mysql.jdbc.Driver");
// 建立连接
String url = "jdbc:mysql://localhost:3306/数据库名称";
String user = "用户名";
String password = "密码";
Connection conn = DriverManager.getConnection(url, user, password);
// 执行SQL查询
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery("SELECT * FROM 表名");
// 处理结果集
while (rs.next()) {
String column1 = rs.getString("列名1");
String column2 = rs.getString("列名2");
// ...
}
// 关闭连接
rs.close();
stmt.close();
conn.close();
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
```
阅读全文