首页 > 其他分享 >缓冲流的使用

缓冲流的使用

时间:2022-09-21 20:56:07浏览次数:64  
标签:缓冲 bos IOException File 使用 new null bis

缓冲流的使用

一,缓冲流的使用

1.缓冲流

BufferedInputStream 字节

BufferedOutputStream

BufferedReader 字符

BufferedWriter

2.作用

提供流的读取,写入的速度

提高读写速度的原因:内部提供了一个缓冲区

3.处理流就是“套接”在已有的流的基础上

二,实现非文本文件的复制

固定的代码构建

@Test
    public void bufferedStreamTest() {
        //1.造文件
        BufferedInputStream bis = null;
        BufferedOutputStream bos = null;
        try {
            File srcFile = new File("1.jpg");
            File destFile = new File("12.jpg");
            //2.造流
            //2.1造节点流
            FileInputStream fis = new FileInputStream(srcFile);
            FileOutputStream fos = new FileOutputStream(destFile);
            //2.2 造缓冲流
            bis = new BufferedInputStream(fis);
            bos = new BufferedOutputStream(fos);

            //3.复制的细节:读取,写入
            byte[] buffer = new byte[10];
            int len;
            while ((len = bis.read(buffer))!=-1){
                bos.write(buffer,0,len);

//                bos.flush();//刷新缓冲区
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            //4.关闭资源流:先关闭外层流,再关闭内层流
            if (bos!=null){
                try {
                    bos.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if (bis!=null){
                try {
                    bis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }

        //说明:关闭外层流的同时,内层流也会自动的进行关闭。关于内层流的关闭,我们可以省略.
//        fos.close();
//        fis.close();
    }

实现文件复制的方法

public void copyFileBuffered(String srcPath, String destPath){
    //1.造文件
    BufferedInputStream bis = null;
    BufferedOutputStream bos = null;
    try {
        File srcFile = new File(srcPath);
        File destFile = new File(destPath);
        //2.造流
        //2.1造节点流
        FileInputStream fis = new FileInputStream(srcFile);
        FileOutputStream fos = new FileOutputStream(destFile);
        //2.2 造缓冲流
        bis = new BufferedInputStream(fis);
        bos = new BufferedOutputStream(fos);

        //3.复制的细节:读取,写入
        byte[] buffer = new byte[1024];
        int len;
        while ((len = bis.read(buffer))!=-1){
            bos.write(buffer,0,len);
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        //4.关闭资源流:先关闭外层流,再关闭内层流
        if (bos!=null){
            try {
                bos.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        if (bis!=null){
            try {
                bis.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

@Test
public void testCopyFileBuffered(){
    long start = System.currentTimeMillis();
    String src = "D:\\BaiduNetdiskDownload\\Anaconda3-2021.05-Linux-x86_64.sh";
    String dest = "D:\\BaiduNetdiskDownload\\1.sh";
    copyFileBuffered(src,dest);

    long end = System.currentTimeMillis();
    System.out.println("复制操纵花费的时间为:"+(end-start));// 节点流byte[1024] 2788ms  缓冲流byte[1024]  940ms
}
三,使用BufferedReader和BufferedWriter实现文本文件的复制
@Test
    public void testBufferedReaderBufferedWrite() {
        BufferedReader br = null;
        BufferedWriter bw = null;
        try {
            //创建文件和相应的流
            br = new BufferedReader(new FileReader(new File("dbcp.txt")));
            bw = new BufferedWriter(new FileWriter(new File("dbcp1.txt")));

            //读写操作
            //方式一:
//            char[] cbuf = new char[1024];
//            int len;
//            while ((len = br.read(cbuf))!= -1){
//                bw.write(cbuf,0,len);
//    //            bw.flush();
//            }
            //方式二:String
            String data;
            while ((data = br.readLine())!= null){
                //方法一:
//                bw.write(data + "\n");//data中不包含换行符
                //方法二:
                bw.write(data);
                bw.newLine();
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            //关闭资源
            if (bw!=null){
                try {
                    bw.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if (br!=null){
                try {
                    br.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }

标签:缓冲,bos,IOException,File,使用,new,null,bis
From: https://www.cnblogs.com/blwx/p/16717103.html

相关文章

  • vue 中使用 eslint 常见的 4 个报错小结
    前言eslint是什么?一个用来识别javascript语法规则和代码风格的检查工具,以避免一些如拼写或语法错误等低级错误的发生,并统一代码风格但在实际开发中,可能总是遇到一......
  • ansible的安装与简单使用
    1.安装前需要epel的repo文件以及2.6以上的python可以在阿里镜像站下载到2.开始安装我这里只有两台虚拟机,一台作为控制端,一台作为被控端控制端:192.168.10.144(之后称主......
  • Typora的基本使用方法
    Typora的使用方法1.标题系列方法一、警号#文本方法二、快捷键ctrl+数字(1~6)2.小标题系列无序标题:*文本和+文本有序标题:数字文本3.语言环境​```环境名称......
  • 使用Navicat Premium 和PL\SQL Developer连接Oracle
    在64位Win7中使用NavicatPremium和PL\SQLDeveloper连接Oracle数据库备忘 服务器端数据库是oracle11g64位。由于主要工作不是开发,也不想在自己的电脑上安装庞大的orac......
  • 使用pm2管理Node进程
    1.PM2是啥简单而言,就是一个自带负载均衡的node应用进程管理器2.为什么使用PM2在使用nodejs启动项目时,一个项目就会对应一个终端,而且如果终端关闭了,项目也就无......
  • StarRocks flink 同步工具 smt 使用
    注:本文主要内容来自于官网MySQL实时同步至StarRocks功能简介StarRocks提供FlinkCDCconnector、flink-connector-starrocks和StarRocks-migrate-tools(简称smt),实......
  • 测试:禅道使用流程大纲
    管理员*、添加用户。*、项目集:有预算,有状态(挂起,暂停)、子项目集。*、产品:(关联项目集),指定负责:产品、测试、发布(通常为研发经理)。*、添加需求:(关联产品),维护模块。*、创建产品开......
  • 使用jaeger-native在Envoy中进行链路追踪
    系统环境网络:172.31.81.0/24服务:Front-Proxy:前端代理,监听端口8000/tcp2个后端服务service1:接收Front-Envoy的请求,并会请求service2service2:接收service1的请求......
  • Redis 安装与使用
    Redis安装与使用Redis介绍Redis是由SalvatoreSanfilippo写的key-value存储系统,是一个跨平台的非关系型数据库(NoSQL)。Redis是用C语言开发完全开源,基于内存的高......
  • mock介绍及moco框架搭建使用
    https://cloud.tencent.com/developer/article/1759972?from=article.detail.1465591一Mock介绍1什么是mockmock测试就是在测试过程中,对于某些不容易构造或者不容易获......