当前位置: 首页 > article >正文

原始流,缓冲流性能比较

一.低级字节流一个一个字节复制

1.代码

package org.example;

import java.io.*;

public class day13 {
    //原视频路径
    private static final String file1 = "D:\\temp\\day05\\改名.mp4";
    //目的视频路径
    private static final String file2 = "D:\\temp\\day05\\不改名.mp4";
    public static void main(String[] args) {
        copy1();
    }
    private  static void copy1(){
        final long startTime = System.currentTimeMillis();
        try (InputStream is = new FileInputStream(file1);
             OutputStream os = new FileOutputStream(file2);
        ) {
            int s;
            while((s=is.read())!=-1){
                os.write(s);
            }
        }catch (Exception e) {
            throw new RuntimeException(e);
        }
        final long endTime = System.currentTimeMillis();
        System.out.println("耗时: "+(endTime-startTime)/1000.0+"s");
    }
}

2.耗时

二.低级字节流使用字节数组复制

1.代码

package org.example;

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;

public class day14 {
    private static final String file1 = "D:\\temp\\day05\\改名.mp4";
    //目的视频路径
    private static final String file2 = "D:\\temp\\day05\\不改名.mp4";
    public static void main(String[] args) {
        copy2();
    }
    private  static void copy2(){
        final long startTime = System.currentTimeMillis();
        try (InputStream is = new FileInputStream(file1);
             OutputStream os = new FileOutputStream(file2);
        ) {
             byte[] buffer = new byte[1024];
            int len ;
            while((len=is.read(buffer))!=-1){
                os.write(buffer,0,len);
            }
        }catch (Exception e) {
            throw new RuntimeException(e);
        }
        final long endTime = System.currentTimeMillis();
        System.out.println("耗时: "+(endTime-startTime)/1000.0+"s");
    }
}

2.耗时

三.缓冲流一个一个字节复制

1.代码

package org.example;

import java.io.*;
import java.lang.invoke.VarHandle;

public class day15 {
    private static final String file1 = "D:\\temp\\day05\\改名.mp4";
    //目的视频路径
    private static final String file2 = "D:\\temp\\day05\\不改名.mp4";

    public static void main(String[] args) {
        copy3();
    }
    private static void copy3() {
        final long startTime = System.currentTimeMillis();
        try (InputStream is = new FileInputStream(file1);
             BufferedInputStream bis = new BufferedInputStream(is);
             OutputStream os = new FileOutputStream(file2);
             BufferedOutputStream bos = new BufferedOutputStream(os);
        ) {
            int len;
            while ((len = bis.read()) != -1) {
                bos.write(len);
            }
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
        final long endTime = System.currentTimeMillis();
        System.out.println("耗时: " + (endTime - startTime) / 1000.0 + "s");
    }
}

2.耗时

四.缓冲流使用字节数组复制

1.代码

package org.example;

import java.io.*;

public class day16 {
    private static final String file1 = "D:\\temp\\day05\\改名.mp4";
    //目的视频路径
    private static final String file2 = "D:\\temp\\day05\\不改名.mp4";

    public static void main(String[] args) {
        copy4();
    }

    private static void copy4() {
        final long startTime = System.currentTimeMillis();
        try (InputStream is = new FileInputStream(file1);
             BufferedInputStream bis = new BufferedInputStream(is);
             OutputStream os = new FileOutputStream(file2);
             BufferedOutputStream bos = new BufferedOutputStream(os);
        ) {
            byte[] buffer = new byte[1024];
            int len;
            while ((len = bis.read(buffer)) != -1) {
                bos.write(buffer, 0, len);
            }
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
        final long endTime = System.currentTimeMillis();
        System.out.println("耗时: " + (endTime - startTime) / 1000.0 + "s");
    }
}

2.耗时


http://www.kler.cn/a/107684.html

相关文章:

  • ios swift开发--ios远程推送通知配置
  • 标准C++ 字符串
  • Scala入门基础(17.1)Set集习题
  • 图像处理实验二(Image Understanding and Basic Processing)
  • 基于yolov8、yolov5的番茄成熟度检测识别系统(含UI界面、训练好的模型、Python代码、数据集)
  • Chrome使用IE内核
  • 淘宝API接口获取商品信息,订单管理,库存管理,数据分析
  • 计算机网络重点概念整理-第七章 网络安全【期末复习|考研复习】
  • 场效应管器件
  • 【C语言数据结构——————排序(1万字)】
  • VSCode 自动格式化
  • elementUI 特定分辨率(如1920*1080)下el-row未超出一行却换行
  • debian 10 安装apache2 zabbix
  • 五、Qt中的常用类
  • 前端学习之Babel转码器
  • C语言 位操作符 >> << | ^
  • IPv6的主要优势有哪些?
  • Python-pptx教程之一从零开始生成PPT文件
  • TSINGSEE青犀睡岗离岗检测算法——确保加油站安全运营
  • 数据安全的重要性:如何解密[thekeyishere@cock.li].Elbie勒索病毒
  • springboot + redis实现签到与统计功能
  • RabbitMQ消息中间件
  • Linux C语言开发-D7D8运算符
  • python excel接口自动化测试框架
  • vue3 源码解析(2)— ref、toRef、toRefs、shallowRef 响应式的实现
  • 【Linux】虚拟机安装Linux、客户端工具,MobaXterm的使用,Linux常用命令