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

文件输入输出流

时间:2018-08-11 23:47:48      阅读:346      评论:0      收藏:0      [点我收藏+]

标签:input   print   NPU   txt   cat   demo   puts   put   test   

一,FileInputStream

public static void fileinputstreamDemo(){
        File file=new File("F:\\filetest\\file01.txt");
        try {
            FileInputStream in=new FileInputStream(file);
            byte[] bytes=new byte[1024];
            int total = in.read(bytes);
            System.out.println("读出来的数据是:"+new String(bytes,0,total));//读出来的数据是:你好,文件输入流
            in.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

  步骤:创建输入流--将路径文件中的数据通过流读入数组--关闭流

二,FileOutputStream

public static void fileoutputstreamDemo(){
        File file=new File("F:\\filetest\\file02.txt");
        try {
            FileOutputStream out=new FileOutputStream(file);
            String str="你好,文件输出流";
            byte[] bytes=str.getBytes();
            out.write(bytes);
            out.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

  步骤:创建输出流--将数组中的文件通过输出流写入磁盘文件--关闭流

 

个人猜想(未验证):数据读写速度(外存<内存<缓存),缓存在cpu中,当然最快,字节输入流(fileinputstream),是把数据直接读入到一个数组中,数组能就存在于内存中,而带缓存的输入流(BufferInputStream)则先将数据读入缓存,这样读写的速度更快,然后再通过流读入到内存

文件输入输出流

标签:input   print   NPU   txt   cat   demo   puts   put   test   

原文地址:https://www.cnblogs.com/guochengfirst/p/9461574.html

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