Java-字节流复制视频

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package com.fluffysponge;

import java.io.*;

/*
* 需求:
* 把E:\\字节流复制视频.avi 复制到模块目录下的 字节流复制视频.avi
*
* 思路:
* 1.根据数据源创建字节输入流对象
* 2.根据目的地创建字节输出流对象
* 3.读写数据,复制视频
* 4.释放资源
*
* 四种方式实现复制视频,并记录每种方式复制视频的时间
* 1.基本字节流一次读写一个字节 共耗时:4150毫秒
* 2.基本字节流一次读写一个字节数组 共耗时:120毫秒
* 3.字节缓冲流一次读写一个字节 共耗时:130毫秒
* 4.字节缓冲流一次读写一个字节数组 共耗时:2毫秒
* */
public class CopyAviDemo {
public static void main(String[] args) throws IOException {
//记录开始时间
long startTime = System.currentTimeMillis();

//复制视频
//method1();
//method2();
//method3();
method4();

//记录结束时间
long endTime = System.currentTimeMillis();
System.out.println("共耗时:" + (endTime - startTime) +"毫秒");

}

//字节缓冲流一次读写一个字节数组
public static void method4() throws IOException {
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("E:\\字节流复制视频.avi"));
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("MyByteStream\\字节流复制视频.avi"));

byte[] bys = new byte[1024];
int len;
while((len = bis.read(bys)) != -1){
bos.write(bys,0,len);
}
bos.close();
bis.close();
}

//字节缓冲流一次读写一个字节
public static void method3() throws IOException {
// E:\\字节流复制视频.avi
// 模块目录下的 字节流复制视频.avi
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("E:\\字节流复制视频.avi"));
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("MyByteStream\\字节流复制视频.avi"));

int by;
while((by = bis.read()) != -1){
bos.write(by);
}
bos.close();
bis.close();
}

//基本字节流一次读写一个字节数组
public static void method2() throws IOException {
// E:\\字节流复制视频.avi
// 模块目录下的 字节流复制视频.avi
FileInputStream fis = new FileInputStream("E:\\字节流复制视频.avi");
FileOutputStream fos = new FileOutputStream("MyByteStream\\字节流复制视频.avi");

byte[] bys = new byte[1024];
int len;
while((len = fis.read(bys)) != -1){
fos.write(bys,0,len);
}
fos.close();
fis.close();
}

//基本字节流一次读写一个字节
public static void method1() throws IOException {
// E:\\字节流复制视频.avi
// 模块目录下的 字节流复制视频.avi
FileInputStream fis = new FileInputStream("E:\\字节流复制视频.avi");
FileOutputStream fos = new FileOutputStream("MyByteStream\\字节流复制视频.avi");

int by;
while((by = fis.read()) != -1){
fos.write(by);
}
fos.close();
fis.close();
}
}