java连接Linux上的mysql 代码实现
时间: 2023-06-01 13:07:23 浏览: 184
java连接mysql代码
可以的,请看下面的Java代码:
```java
import java.sql.*;
public class Main {
static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
static final String DB_URL = "jdbc:mysql://localhost/test";
static final String USER = "username";
static final String PASS = "password";
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
try{
Class.forName("com.mysql.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 Employees";
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.print(", 年龄: " + age);
System.out.println();
}
rs.close();
stmt.close();
conn.close();
}catch(SQLException se){
se.printStackTrace();
}catch(Exception e){
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!");
}
}
```
上面的代码会连接到名为“test”的MySQL数据库,并查询名为“Employees”的数据表中的所有记录。如果需要连接到不同的数据库和表,请修改DB_URL和sql变量中的相应值。
请注意,为了运行这段代码,需要下载MySQL JDBC驱动程序。驱动程序可以在官方网站(http://dev.mysql.com/downloads/connector/j/)上下载。下载后,将其添加到Java类路径中。
如果你运行上述代码,并且确保你的MySQL服务器在运行状态,你将会看到以下输出:
```
连接数据库...
实例化Statement对象...
ID: 100, 姓名: 李明, 年龄: 20
ID: 101, 姓名: 张三, 年龄: 30
ID: 102, 姓名: 李四, 年龄: 40
...
Goodbye!
```
上述输出显示了Emlpoyees表中的所有记录。
阅读全文