C盘根目录下的文件中保存了学员的姓名等信息,请编程实现将此文件复制到D盘根目录下用JAVA语言中的IO流
时间: 2023-04-12 20:01:29 浏览: 116
好的,以下是JAVA语言中的IO流实现文件复制的代码:
```java
import java.io.*;
public class FileCopy {
public static void main(String[] args) {
String sourceFilePath = "C:\\students.txt"; // 源文件路径
String targetFilePath = "D:\\students.txt"; // 目标文件路径
try {
FileInputStream fis = new FileInputStream(sourceFilePath);
FileOutputStream fos = new FileOutputStream(targetFilePath);
byte[] buffer = new byte[1024];
int length;
while ((length = fis.read(buffer)) > 0) {
fos.write(buffer, 0, length);
}
fis.close();
fos.close();
System.out.println("文件复制成功!");
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
阅读全文