黑马程序员技术交流社区
标题:
文本文件的复制
[打印本页]
作者:
forTomorrow
时间:
2015-6-11 17:15
标题:
文本文件的复制
package com.itheima;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
public class FileCopy {
public static void main(String[] args) {
// TODO Auto-generated method stub
FileReader fr = null;
FileWriter fw = null;
try {
fr = new FileReader("src\\com\\itheima\\FileCopy.java");
fw = new FileWriter("FileCopy(1).java");
char[] chs = new char[1024];
int len = 0;
while ((len = fr.read(chs)) != -1) {
fw.write(chs,0,len); //注意:这里千万别错写成fw.write(chs), 不然会导致看起来貌似是复制了2次,其实是文件字符长度超过1024后,分批次存取到字符数组导致的
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
try {
if (fr != null)
fr.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
try {
if (fw != null)
fw.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
}
作者:
铁甲依然在
时间:
2015-6-11 18:16
消灭零回复!!
作者:
forTomorrow
时间:
2015-6-12 09:59
铁甲依然在 发表于 2015-6-11 18:16
消灭零回复!!
:L:L:L:L:L
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2