共计 950 个字符,预计需要花费 3 分钟才能阅读完成。
在 Java 中,可以使用 DriverManager.getConnection() 方法来连接数据库。首先,需要导入 java.sql 包,然后使用以下代码来连接数据库:
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() 方法来连接数据库。
丸趣 TV 网 – 提供最优质的资源集合!
正文完
发表至: Java
2024-02-27