在Java中,可以使用DriverManager.getConnection()方法來連接數據庫。首先,需要導入java.sql包,然后使用以下代碼來連接數據庫:
```java
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
public class DatabaseConnection {
public static void main(String[] args) {
Connection connection = null;
String url = "jdbc:mysql://localhost:3306/mydatabase";
String username = "username";
String password = "password";
try {
connection = DriverManager.getConnection(url, username, password);
System.out.println("Database connected!");
} catch (SQLException e) {
System.out.println("Failed to connect to database!");
e.printStackTrace();
} finally {
try {
if (connection != null) {
connection.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
```
在上面的代碼中,需要替換url、username和password為實際的數據庫連接信息。其中,url是數據庫的連接地址,username和password分別是數據庫的用戶名和密碼。在try-catch塊中,調用DriverManager.getConnection()方法來連接數據庫,如果連接成功則輸出"Database connected!",否則輸出"Failed to connect to database!"。最后,在finally塊中關閉數據庫連接。
通過以上方式可以使用DriverManager.getConnection()方法來連接數據庫。