用java连接数据库的代码怎么写
时间: 2023-04-09 15:04:13 浏览: 101
你可以使用 JDBC API 来连接数据库,以下是一个简单的示例代码:
```
import java.sql.*;
public class ConnectToDatabase {
public static void main(String[] args) {
String url = "jdbc:mysql://localhost:3306/mydatabase";
String username = "root";
String password = "mypassword";
try {
Connection conn = DriverManager.getConnection(url, username, password);
System.out.println("Database connected successfully!");
// Do something with the connection
conn.close();
} catch (SQLException e) {
System.out.println("Database connection failed!");
e.printStackTrace();
}
}
}
```
在这个示例中,我们使用了 MySQL 数据库,连接字符串为 `jdbc:mysql://localhost:3306/mydatabase`,其中 `localhost` 是数据库服务器的地址,`3306` 是端口号,`mydatabase` 是数据库名称。你需要将这些值替换为你自己的数据库信息。
然后,我们使用 `DriverManager.getConnection()` 方法来建立连接,传入连接字符串、用户名和密码。如果连接成功,我们就可以使用 `Connection` 对象来执行 SQL 查询和更新操作。最后,我们使用 `conn.close()` 方法关闭连接。
希望这个示例能够帮助你连接数据库!
阅读全文