写文件

作者: 低至一折起 | 来源:发表于2017-12-05 19:37 被阅读0次
    public static void main(String[] args) throws IOException {
            // 获取文件流
            InputStream fis= new FileInputStream("D:\\桌面\\111\\111.txt");
            
            int index;  
            byte[] bytes = new byte[1024];  
            FileOutputStream fos= new FileOutputStream("D:\\桌面\\111\\222.txt");  
            while ((index = fis.read(bytes)) != -1) {  
                fos.write(bytes, 0, index);  
                fos.flush();  
            } 
    
            fos.close();  
            fis.close();  
        }
    

    相关文章

      网友评论

          本文标题:写文件

          本文链接:https://www.haomeiwen.com/subject/bzvovxtx.html