package cn.itcast.f.io.test;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
/*
* 对文本文件进行复制。将c盘的文件复制到d盘中。
* 原理:其实就是一个最简单的读写过程。
* 从c盘源,读取数据,并将读到的数据,写入到目的d盘中。
*/
public class CopyTextFileTest2 {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) {
FileReader fr = null;
FileWriter fw = null;
try {
// 创建一个字符读取流读写和源数据关联。
fr = new FileReader("其他API文档.txt");
// 创建一个存储数据的目的地。
fw = new FileWriter("copy_demo2.txt");
char[] buf = new char[1024];
int len = 0;
while ((len = fr.read(buf)) != -1) {
fw.write(buf, 0, len);
}
} catch (Exception e) {
} finally {
if (fw != null)
try {
fw.close();
} catch (IOException e) {
e.printStackTrace();
}
if (fr != null)
try {
fr.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
|