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

java_io_FileOutStream和流的分类

时间:2016-12-26 21:23:40      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:mil   span   exception   string   输出流   输入流   str   ring   otf   

流的分类

1.按照方向分:输入流和输出流

2.按照类型分:字节流和字符流

3.按照操作方式分:节点流和过滤流

4.转换流

 

package Stream;

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

public class FileOutputStream {
    
    public static void main(String[] args) {
        FileInputStream fis=null;
        FileOutputStream fos=null;
        try {
            fis=new FileInputStream("G:\\图片\\one.JPG");
            fos=new FileOutputStream("D:\\temp\\two.jpg");
            byte buf[]=new byte[1024];
            int len=0;
            while((len=fis.read(buf))>0){
                System.out.write(buf);
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }finally{
            if(fis!=null)
                try {
                    fis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            if(fos!=null)
                try {
                    fos.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
        }
    }

}

java_io_FileOutStream和流的分类

标签:mil   span   exception   string   输出流   输入流   str   ring   otf   

原文地址:http://www.cnblogs.com/hjs775756009/p/6223483.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!