查阅Java lO帮助 实现文件复制
时间: 2023-11-14 16:16:56 浏览: 60
可以使用Java中的FileInputStream和FileOutputStream类来实现文件复制。以下是一个简单的示例代码:
```java
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
public class FileCopyExample {
public static void main(String[] args) {
File sourceFile = new File("path/to/source/file");
File destFile = new File("path/to/destination/file");
try {
FileInputStream fis = new FileInputStream(sourceFile);
FileOutputStream fos = new FileOutputStream(destFile);
byte[] buffer = new byte[1024];
int length;
while ((length = fis.read(buffer)) > 0) {
fos.write(buffer, 0, length);
}
fos.close();
fis.close();
System.out.println("File copied successfully!");
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
请将代码中的"sourceFile"和"destFile"替换为实际的文件路径。
阅读全文