首页 > 代码库 > 字节流复制一个图片
字节流复制一个图片
1.用字节流读取对象和图片关联
2.用字节流写入流对象,创建一个图片文件.
3.通过循环读写,完成数据存储.
4.关闭资源
实例代码:
import java.io.*;class CopyPic { public static void main(String[] args) { FileOutputStream fos = null; FileInputStream fis = null; try { fos = new FileOutputStream("c:\\2.jpg"); fis = new FileInputStream("c:\\1.jpg"); byte[] buf = new byte[1024]; int len = 0; while((len = fis.read(buf)) != -1){ fos.write(buf, 0 , len); } } catch (IOException e) { throw new RuntimeException("failed!"); } finally{ try { if(fis !=null) fis.close(); } catch (IOException e) { throw new RuntimeException("read failed!"); } try { if(fos !=null) fos.close(); } catch (IOException e) { throw new RuntimeException("write failed!"); } } }}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。