码迷,mamicode.com
首页 > 其他好文 > 详细

利用FileOutputStream类和FileInputStream类拷贝一个文件

时间:2020-03-02 13:03:34      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:stack   NPU   while   close   new   文件   cat   static   int   

import java.io.*;

public class TestFileOutputStream{
    
    public static void main(String[] args){
        try{
            FileOutputStream out = new FileOutputStream("D:/Java/TestFileOutputStream/copy.txt");
            FileInputStream in = new FileInputStream("D:/Java/TestFileOutputStream/TestFileOutputStream.java");
            int b = 0;
            
            while((b = in.read()) != -1){
                out.write(b);
            }
            
            out.flush();
            out.close();
            in.close();
        } catch(FileNotFoundException e){
            e.printStackTrace();
        } catch(IOException e){
            e.printStackTrace();
        } 
    }
    
}

 

利用FileOutputStream类和FileInputStream类拷贝一个文件

标签:stack   NPU   while   close   new   文件   cat   static   int   

原文地址:https://www.cnblogs.com/yxfyg/p/12394663.html

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