java 连接mysql数据库例子
时间: 2023-06-09 09:02:17 浏览: 90
java连接mysql示例
好的,我可以为您提供 Java 连接 MySQL 数据库的示例代码。以下是一个简单的例子:
```
import java.sql.*;
public class MySQLDemo {
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
try {
// 加载 MySQL 驱动程序
Class.forName("com.mysql.jdbc.Driver");
// 连接到数据库
String url = "jdbc:mysql://localhost:3306/test";
String user = "root";
String password = "password";
conn = DriverManager.getConnection(url, user, password);
// 创建一个 Statement 对象
stmt = conn.createStatement();
// 执行查询
rs = stmt.executeQuery("SELECT * FROM employees");
// 处理结果集
while (rs.next()) {
int id = rs.getInt("id");
String name = rs.getString("name");
String email = rs.getString("email");
System.out.println("Employee ID: " + id + ", Name: " + name + ", Email: " + email);
}
} catch (SQLException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
} finally {
// 关闭资源
try {
if (rs != null) rs.close();
if (stmt != null) stmt.close();
if (conn != null) conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
```
在这个例子中,我们首先加载了 MySQL 驱动程序,并使用 `DriverManager.getConnection` 方法连接到 MySQL 数据库。然后,我们创建了一个 `Statement` 对象,并使用 `executeQuery` 方法执行了一个查询语句。最后,我们遍历了结果集并输出了查询结果。
希望这个例子能够帮助您开始使用 Java 连接 MySQL 数据库。如果您还有任何问题,请随时问我。
阅读全文