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

learning java FileOutputStream

时间:2019-08-05 14:22:48      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:txt   string   stream   col   tput   cep   while   not   close   

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

public class FileOutputStreamTest {
    public static void main(String[] args) {
        try {
            var fis = new FileInputStream("FileInputStreamTest.java");
            var fos = new FileOutputStream("output.txt");
            {
                var buf = new byte[32];
                var hasRead = 0;
                while ((hasRead = fis.read(buf)) > 0){
                    fos.write(buf, 0, hasRead);
                }
            }
            fis.close();
            fos.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

 

learning java FileOutputStream

标签:txt   string   stream   col   tput   cep   while   not   close   

原文地址:https://www.cnblogs.com/lianghong881018/p/11302425.html

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