JAVA IO 字节流 FileInputStream FileOutputStream
Posted 行尸走肉
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA IO 字节流 FileInputStream FileOutputStream相关的知识,希望对你有一定的参考价值。
摘抄自 b站尚硅谷JAVA视频教程
与字符流操作基本一致.这里给出使用字节流复制一张图片的代码.
File file = null; File gg = null; gg = new File("gg.jpg"); file = new File("ggCopy.jpg"); FileOutputStream fo=null; FileInputStream fi =null; try { fo = new FileOutputStream(file); fi = new FileInputStream(gg); byte [] bytes = new byte[5]; int len =0; while ((len=fi.read(bytes))!=-1){ fo.write(bytes,0,len); ; } } catch (IOException e) { e.printStackTrace(); }finally { if(fo!=null){ try{ fo.close(); }catch (IOException e){ e.printStackTrace(); } } if(fi!=null){ try{ fi.close(); }catch (IOException e){ e.printStackTrace(); } } }
以上是关于JAVA IO 字节流 FileInputStream FileOutputStream的主要内容,如果未能解决你的问题,请参考以下文章