黑马程序员技术交流社区
标题:
文本文件的复制 (异常处理)
[打印本页]
作者:
七色★碎羽
时间:
2015-9-11 21:33
标题:
文本文件的复制 (异常处理)
public class CopyCopyDemo {
public static void main(String[] args) {
FileInputStream fis=null;
FileOutputStream fos=null;
try{
fis=new FileInputStream("e:\\1\\1.txt");
fos=new FileOutputStream("f:\\1.txt");
int len=0;
while((len=fis.read())!=-1){
fos.write(len);
}
}
catch(IOException ie){
ie.printStackTrace();
throw new RuntimeException("出错了");
}finally{
try{
if(fis!=null)
fis.close();
}catch(IOException ie){
throw new RuntimeException("没有关闭");
}finally{
try{
if (fos!=null)
fos.close();
}catch(IOException ie){
throw new RuntimeException("没关闭");
}
}
}
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2