要顯示數據庫的數據,首先需要連接到數據庫,并執行查詢操作。以下是一個簡單的示例代碼來顯示數據庫的數據:
```java
import java.sql.*;
public class DisplayData {
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
try {
// 連接到數據庫
conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/mydatabase", "username", "password");
// 創建Statement對象
stmt = conn.createStatement();
// 執行查詢操作
rs = stmt.executeQuery("SELECT * FROM mytable");
// 遍歷結果集并輸出數據
while (rs.next()) {
int id = rs.getInt("id");
String name = rs.getString("name");
int age = rs.getInt("age");
System.out.println("ID: " + id + ", Name: " + name + ", Age: " + age);
}
} catch (SQLException 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數據庫,并且已經創建了一個名為"mydatabase"的數據庫,其中包含一個名為"mytable"的表,表中包含"id"、"name"和"age"三個列。
請注意,上述代碼中的"username"和"password"是連接數據庫時的用戶名和密碼,需要根據實際情況進行修改。
通過執行上述代碼,可以連接到數據庫,并執行查詢操作來顯示數據庫的數據。