一个文件从一个地方拷贝到一个地方具体的流畅就是如图:
在完成程序时,应该是读取部分数据 就写入到指定文件中
小王同学在d盘有一张background.jpg图片 小王同学想把通过输入流 和 输出流来把我们的这张图片
拷贝到d盘 具体的流程 代码如下:
package com.wxz.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; public class FileCopy { public static void main(String[] args) { /** * 完成文件拷贝 将e:\\background.jpg拷贝到c:\\ * 思路分析 * 1、创建文件的输入流 将文件读入到程序 * 2、创建文件的输出流,将读取到的文件数据,写入到指定的文件 */ String srcfilePath="e:\\background.jpg"; String destfilePath="c:\\background.jpg"; FileInputStream fileInputStream=null; //防止异常 FileOutputStream fileOutputStream=null; try { fileInputStream=new FileInputStream(srcfilePath); fileOutputStream=new FileOutputStream(destfilePath); //定义一个字节数组,提高读取效果 byte []buf=new byte[1024]; int readLine=0; while ((readLine=fileInputStream.read(buf))!=-1){ //读取到后 就写入文件到文件 通过 FileOutputStream 即一边读 一边写~ fileOutputStream.write(buf,0,readLine); } System.out.println("拷贝成功!!~~"); } catch (IOException e) { e.printStackTrace(); } finally { try { //关闭输入流和输出流 释放资源 if(fileInputStream!=null){ fileInputStream.close(); } if(fileOutputStream!=null){ fileOutputStream.close(); } } catch (IOException e) { e.printStackTrace(); } } } }
我们ctrl+f5 运行 看效果~
为什么报错了 呢
小王想了一会 原来是 拷贝到c盘去了 c盘需要管理员权限 所以打开IDEA的时候需要启动管理员权限!
然后把路径改到d盘即可~
package com.wxz.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; public class FileCopy { public static void main(String[] args) { /** * 完成文件拷贝 将e:\\background.jpg拷贝到c:\\ * 思路分析 * 1、创建文件的输入流 将文件读入到程序 * 2、创建文件的输出流,将读取到的文件数据,写入到指定的文件 */ String srcfilePath="e:\\background.jpg"; String destfilePath="d:\\background.jpg"; FileInputStream fileInputStream=null; //防止异常 FileOutputStream fileOutputStream=null; try { fileInputStream=new FileInputStream(srcfilePath); fileOutputStream=new FileOutputStream(destfilePath); //定义一个字节数组,提高读取效果 byte []buf=new byte[1024]; int readLine=0; while ((readLine=fileInputStream.read(buf))!=-1){ //读取到后 就写入文件到文件 通过 FileOutputStream 即一边读 一边写~ fileOutputStream.write(buf,0,readLine); } System.out.println("拷贝成功!!~~"); } catch (IOException e) { e.printStackTrace(); } finally { try { //关闭输入流和输出流 释放资源 if(fileInputStream!=null){ fileInputStream.close(); } if(fileOutputStream!=null){ fileOutputStream.close(); } } catch (IOException e) { e.printStackTrace(); } } } }
我们打开我的电脑
点击d盘
果然拷贝到了我们的d盘
好了今天小王同学带给大家的文件拷贝 就到此结束了
后面还会继续输出高质量的文章的!