编写一段Java web连接数据库的代码并附加每句的注解
时间: 2024-05-07 14:16:35 浏览: 85
很好的问题!以下是一段连接MySQL数据库的Java web代码,并附加了注释,希望能够帮到您:
```
import java.sql.*;
public class ConnectDB {
// JDBC驱动名以及数据库URL
static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
static final String DB_URL = "jdbc:mysql://localhost/EXAMPLEDB";
// 数据库的用户名与密码
static final String USER = "username";
static final String PASS = "password";
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
try {
// 注册JDBC驱动
Class.forName(JDBC_DRIVER);
// 打开连接
System.out.println("连接数据库...");
conn = DriverManager.getConnection(DB_URL,USER,PASS);
// 执行查询
System.out.println("实例化Statement对象...");
stmt = conn.createStatement();
String sql;
sql = "SELECT id, name, age FROM users";
ResultSet rs = stmt.executeQuery(sql);
// 处理结果集
while(rs.next()) {
// 通过列名获取值
int id = rs.getInt("id");
String name = rs.getString("name");
int age = rs.getInt("age");
// 输出结果
System.out.print("ID: " + id);
System.out.print(", 名称: " + name);
System.out.println(", 年龄: " + age);
}
// 关闭结果集、语句和连接
rs.close();
stmt.close();
conn.close();
} catch(SQLException se) {
// 处理JDBC错误
se.printStackTrace();
} catch(Exception e) {
// 处理Class.forName错误
e.printStackTrace();
} finally {
// 关闭资源
try {
if(stmt!=null) stmt.close();
} catch(SQLException se2) {
} try {
if(conn!=null) conn.close();
} catch(SQLException se) {
se.printStackTrace();
}
System.out.println("Goodbye!");
}
}
}
```
注释已经添加在代码中,请您按照注释进行理解和运行。希望您能满意我的回答。
阅读全文