Java IO流--使用FileInputStream和FileOutputStream复制图片和文件
2021/6/21 22:56:14
本文主要是介绍Java IO流--使用FileInputStream和FileOutputStream复制图片和文件,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
一、复制图片
@Test public void test2(){ FileInputStream fis = null; FileOutputStream fos = null; try { //1.提供File类的对象 File file1 = new File("工作二维码.png"); File file2 = new File("工作二维码3.png"); //2.造流 fis = new FileInputStream(file1); fos = new FileOutputStream(file2); //3.复制图片 byte[] buffer = new byte[5]; int len; while ((len=fis.read(buffer))!=-1){ fos.write(buffer,0,len); } } catch (IOException e) { e.printStackTrace(); } finally { //4.关闭资源 if (fis!=null){ try { fis.close(); }catch (IOException e) { e.printStackTrace(); } } if (fos!=null){ try { fos.close(); } catch (IOException e) { e.printStackTrace(); } } } }
二、复制文件
//指定路径下文件的复制 public void copyFile(String srcPath,String descPath){ FileInputStream fis = null; FileOutputStream fos = null; try { //1.提供File类的对象 File file1 = new File(srcPath); File file2 = new File(descPath); //2.造流 fis = new FileInputStream(file1); fos = new FileOutputStream(file2); //3.复制图片 byte[] buffer = new byte[1024]; int len; while ((len=fis.read(buffer))!=-1){ fos.write(buffer,0,len); } } catch (IOException e) { e.printStackTrace(); } finally { //4.关闭资源 if (fis!=null){ try { fis.close(); }catch (IOException e) { e.printStackTrace(); } } if (fos!=null){ try { fos.close(); } catch (IOException e) { e.printStackTrace(); } } } } @Test public void testCopyFile(){ long start = System.currentTimeMillis(); String srcPath="C:\\Users\\DELL\\Desktop\\1.回顾类-封装和继承.mp4"; String descPath= "C:\\Users\\DELL\\Desktop\\1.回顾类-封装和继承3.mp4"; copyFile(srcPath,descPath); long end = System.currentTimeMillis(); System.out.println("复制消耗的时间:"+(end-start)); }
这篇关于Java IO流--使用FileInputStream和FileOutputStream复制图片和文件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-24Java中定时任务实现方式及源码剖析
- 2024-11-24Java中定时任务实现方式及源码剖析
- 2024-11-24鸿蒙原生开发手记:03-元服务开发全流程(开发元服务,只需要看这一篇文章)
- 2024-11-24细说敏捷:敏捷四会之每日站会
- 2024-11-23Springboot应用的多环境打包入门
- 2024-11-23Springboot应用的生产发布入门教程
- 2024-11-23Python编程入门指南
- 2024-11-23Java创业入门:从零开始的编程之旅
- 2024-11-23Java创业入门:新手必读的Java编程与创业指南
- 2024-11-23Java对接阿里云智能语音服务入门详解