zoukankan      html  css  js  c++  java
  • Java基础之IO流,通过字节流对媒体文件进行复制操作

    import java.io.*;

    class ImageCopyDemo
    {
        public static void main(String[] args)
        {
            FileInputStream fis = null;
            FileOutputStream fos = null;
        
            try
            {
                fis = new FileInputStream(new File("001.png"));
                fos = new FileOutputStream(new File("001-copy.png"));
                
                /*
                byte[] buffer = new byte[fis.available()];
                fis.read(buffer);            
                fos.write(buffer);
                
    */
                
                //最折中的方法
                byte[] buffer = new byte[1024];
                int length = 0;
                while((length=fis.read(buffer))!=-1)
                {
                    fos.write(buffer);
                }        
                
                /*
                int ch = 0;
                while((ch=fis.read())!=-1)
                {
                    fos.write(ch);
                }
                
    */
            }
            catch(IOException e)
            {
                System.out.println(e.getMessage());
            }
            finally
            {
                try
                {
                    if(null!=fis)
                        fis.close();
                    if(null!=fos)
                        fos.close();
                }
                catch(IOException e)
                {
                    System.out.println(e.getMessage());
                }
            }
        }
    }
  • 相关阅读:
    华为面向开发者的十大技术
    为什么开发者应该摒弃敏捷?
    程序员创业的特别之处
    这是我的facebook和twitter,欢迎大家来加我
    教程:2014新版新浪博客如何添加音乐播放器?
    Algs4-1.1.11编写一段代码,打印出一个二维布尔数组的内容
    Algs4-1.1.9十进制整数转二进制
    Algs4-1.1.8下列语句会打印出什么结果?给出解释
    Algs4-1.1.7分别给出以下代码段打印的值
    Algs4-1.1.6下面这段程序会打印出什么
  • 原文地址:https://www.cnblogs.com/cxmsky/p/2886506.html
Copyright © 2011-2022 走看看