码迷,mamicode.com
首页 > 编程语言 > 详细

java程序测试之字节流

时间:2015-03-20 23:34:04      阅读:155      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!