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