• Java基础之IO流,通过字节流缓冲区进行媒体文件的复制操作


    import java.io.*;

    class BufferedCopyFileDemo
    {
        public static void main(String[] args)throws IOException
        {
            BufferedInputStream bis = null;
            BufferedOutputStream bos = null;
        
            try
            {
                bis = new BufferedInputStream(new FileInputStream(new File("001.avi")));
                bos = new BufferedOutputStream(new FileOutputStream(new File("001-1.avi")));
                
                int ch = 0;
                while((ch=bis.read())!=-1)
                {
                    bos.write(ch);
                }            
            }
            catch(IOException e)
            {
                System.err.println(e.getMessage());
            }
            finally
            {
                try            
                {
                    if(null!=bis)bis.close();
                    if(null!=bos)bos.close();
                }
                catch(IOException e)
                {
                    System.err.println(e.getMessage());
                }
            }
        }
    }
  • 相关阅读:
    Selenium2+python自动化17-JS处理滚动条
    图论一
    HDU1106
    银行家算法学习笔记
    NYOJ 540
    我在博客园 2013-08-02 22:04 200人阅读 评论(0) 收藏
    编程之美:平面最近点对
    RIA算法解决最小覆盖圆问题
    求两直线交点和三角形内外心
    求圆心
  • 原文地址:https://www.cnblogs.com/cxmsky/p/2886936.html
Copyright © 2020-2023  润新知