java编写程序,将SQL Sever数据库中Student表中的内容,写到E:\IOTest\student.txt里。(可采用FileOutPutStream或FileWriter实现该功能)
时间: 2024-02-10 18:10:38 浏览: 62
用java实现学生信息录入写到文档中去
好的,下面是Java代码实现:
```java
import java.io.*;
public class WriteStudentToFile {
public static void main(String[] args) {
try {
// 1.连接SQL Server数据库
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
String url = "jdbc:sqlserver://localhost:1433;databaseName=your_db_name";
String user = "your_username";
String password = "your_password";
Connection conn = DriverManager.getConnection(url, user, password);
// 2.查询Student表中的内容
String sql = "SELECT * FROM Student";
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery(sql);
// 3.将查询结果写入文件
File file = new File("E:\\IOTest\\student.txt");
FileWriter fw = new FileWriter(file);
while (rs.next()) {
int id = rs.getInt("id");
String name = rs.getString("name");
int age = rs.getInt("age");
fw.write(id + "\t" + name + "\t" + age + "\n");
}
fw.close();
// 4.关闭连接
rs.close();
stmt.close();
conn.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
```
这个程序使用了JDBC连接SQL Server数据库,并且查询Student表中的内容,然后将查询结果写入E:\IOTest\student.txt文件中。你可以将your_db_name、your_username和your_password替换成实际的数据库名、用户名和密码。注意确保在执行该程序之前已经在E:\IOTest目录下创建了student.txt文件。
阅读全文