A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© Jeffery 中级黑马   /  2015-8-25 23:57  /  348 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

使用带缓冲功能的字节流复制文件?

u=1664921489,3189298298&fm=21&gp=0.jpg (15.87 KB, 下载次数: 9)

u=1664921489,3189298298&fm=21&gp=0.jpg

4 个回复

倒序浏览
哈哈哈,我又看到你了,,其实我还么有学习到这里,,可惜帮不了你咯。
回复 使用道具 举报
这个。。。。。。。。。。。。。
回复 使用道具 举报
  1. package com.itheima.copyfile;

  2. import java.io.BufferedInputStream;
  3. import java.io.BufferedOutputStream;
  4. import java.io.File;
  5. import java.io.FileInputStream;
  6. import java.io.FileOutputStream;
  7. import java.io.IOException;

  8. public class CopyByBufferedInputStream {

  9.     public static void main(String[] args) throws IOException {
  10.         File source_file = new File("c:\\1.jpg");
  11.         File destination_file = new File("c:\\2.jpg");

  12.         BufferedInputStream bis = new BufferedInputStream(new FileInputStream(source_file));
  13.         BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(destination_file));

  14.         int ch = 0;
  15.         while ((ch = bis.read()) != -1) {
  16.             bos.write(ch);
  17.         }
  18.         bis.close();
  19.         bos.close();

  20.     }

  21. }
复制代码

回复 使用道具 举报
和字符流差不多的
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马