Java读写文件程序代码.docx

Java读写文件程序代码.docx

ID:50827079

大小:31.45 KB

页数:2页

时间:2020-03-15

Java读写文件程序代码.docx_第1页
Java读写文件程序代码.docx_第2页
资源描述:

《Java读写文件程序代码.docx》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库

1、读写文件编写一个程序用于复制文件。1.从键盘输入原文件名和目标文件名,或直接使用main方法的参数也可以。2.如果源文件不存在,给出提示。3.如果源文件存在,则将源文件复制到目标文件。importjava.io.BufferedInputStream;importjava.io.BufferedOutputStream;importjava.io.File;importjava.io.FileInputStream;importjava.io.FileNotFoundException;import

2、java.io.FileOutputStream;importjava.io.IOException;publicclassCopyFile{publicstaticvoidmain(String[]args){if(args.length<2){System.out.println("请输入源文件路径和目标文件路径");System.exit(-1);}Filesrc=newFile(args[0]);Filedest=newFile(args[1]);FileInputStreamfis=nul

3、l;FileOutputStreamfos=null;BufferedInputStreambis=null;BufferedOutputStreambos=null;intcount=0;try{fis=newFileInputStream(src);fos=newFileOutputStream(dest);bis=newBufferedInputStream(fis);bos=newBufferedOutputStream(fos);intlength=fis.available();byte

4、[]buffer=newbyte[length];bis.read(buffer);bos.write(buffer);bos.flush();}catch(FileNotFoundExceptione){//TODOAuto-generatedcatchblockSystem.out.println("找不到源文件路径");}catch(IOExceptionioe){System.out.println("读写文件错误");}finally{if(bos!=null){try{bos.close

5、();}catch(IOExceptione){e.printStackTrace();}}if(bis!=null){try{bis.close();}catch(IOExceptione){e.printStackTrace();}}if(fos!=null){try{fos.close();}catch(IOExceptione){e.printStackTrace();}}if(fis!=null){try{fis.close();}catch(IOExceptione){e.printSt

6、ackTrace();}}}}}

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。