首页 > 编程语言 > 详细

java程序测试之字节流

时间:2015-03-20 23:32:54      阅读:333      评论:0      收藏:0      [点我收藏+]
package filestream;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class ByteStreamTester {

    public static void main(String [] args)
    {
        FileInputStream in = null;
        FileOutputStream out = null;
        String path = "E:\\java\\";
        try
        {
            in = new FileInputStream(path+"IOFile.txt");
            out = new FileOutputStream(path+"IOFile_copy.txt");
            int c;
            while ((c=in.read())!=-1)
            {
                out.write(c);
            }
        }
        catch(FileNotFoundException e)
        {
            e.printStackTrace();
        }
        catch(IOException e)
        {
            e.printStackTrace();
        }
        finally
        {
            try
            {
                if(in!=null)
                    in.close();
                if(out!=null)
                    out.close();
            }
            catch(IOException e)
            {
                e.printStackTrace();
            }
            
        }
    }
}

 

java程序测试之字节流

原文:http://www.cnblogs.com/ghmgm/p/4354778.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!