java 字节流文件复制方法总结
2019-02-21 06:38:49来源:博客园 阅读 ()
1、使用字节流每次读写单个字节
1 public static void main(String[] args) throws IOException { 2 FileInputStream fis = new FileInputStream("C:\\CloudMusic\\1.mp3"); 3 FileOutputStream fos = new FileOutputStream("e:\\1.mp3"); 4 int len = 0; 5 while ((len = fis.read()) != -1) { 6 fos.write(len); 7 } 8 if (fos != null) { 9 fos.close(); 10 } 11 if (fis != null) { 12 fis.close(); 13 } 14 }
2、使用字节流每次读写多个字节
1 public static void main(String[] args) throws IOException { 2 FileInputStream fis = new FileInputStream("C:\\CloudMusic\\1.mp3"); 3 FileOutputStream fos = new FileOutputStream("e:\\1.mp3"); 4 byte[] b = new byte[1024]; 5 int len = 0; 6 while ((len = fis.read(b)) != -1) { 7 fos.write(b,0,len); 8 } 9 if (fos != null) { 10 fos.close(); 11 } 12 if (fis != null) { 13 fis.close(); 14 } 15 }
3、使用字节缓冲流每次读写单个字节
1 public static void main(String[] args) throws IOException { 2 BufferedInputStream bis = new BufferedInputStream(new FileInputStream("C:\\CloudMusic\\1.mp3")); 3 BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("e:\\1.mp3")); 4 int len = 0; 5 while ((len = bis.read()) != -1) { 6 bos.write(len); 7 } 8 if (bos != null) { 9 bos.close(); 10 } 11 if (bis != null) { 12 bis.close(); 13 } 14 }
4、使用字节缓冲流每次读写多个字节
1 public static void main(String[] args) throws IOException { 2 BufferedInputStream bis = new BufferedInputStream(new FileInputStream("C:\\CloudMusic\\1.mp3")); 3 BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("e:\\1.mp3")); 4 byte[] b = new byte[1024]; 5 int len = 0; 6 while ((len = bis.read(b)) != -1) { 7 bos.write(b, 0, len); 8 } 9 if (bos != null) { 10 bos.close(); 11 } 12 if (bis != null) { 13 bis.close(); 14 } 15 }
原文链接:https://www.cnblogs.com/voidchar/p/10410278.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 国外程序员整理的Java资源大全(全部是干货) 2020-06-12
- 2020年深圳中国平安各部门Java中级面试真题合集(附答案) 2020-06-11
- 2020年java就业前景 2020-06-11
- 04.Java基础语法 2020-06-11
- Java--反射(框架设计的灵魂)案例 2020-06-11
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash