-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileBufferedTest.java
More file actions
112 lines (91 loc) · 2.87 KB
/
FileBufferedTest.java
File metadata and controls
112 lines (91 loc) · 2.87 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
package IO;
import org.junit.Test;
import java.io.*;
public class FileBufferedTest {
@Test
public void testBuffered(){
FileInputStream fis = null;
FileOutputStream fos = null;
BufferedInputStream bis = null;
BufferedOutputStream bos = null;
try {
File file1 = new File("香港图书馆.jpeg");
File file2 = new File("香港图书馆buffered.jpeg");
fis = new FileInputStream(file1);
fos = new FileOutputStream(file2);
bis = new BufferedInputStream(fis);
bos = new BufferedOutputStream(fos);
byte[] buffer = new byte[10];
int len;
while ((len = bis.read(buffer)) != -1){
bos.write(buffer,0,len);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
if(bis != null){
try {
bis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(bos != null){
try {
bos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
// fis.close();
// fos.close();
}
}
public void copyFile1(String srcPath,String destPath){
FileInputStream fis = null;
FileOutputStream fos = null;
BufferedInputStream bis = null;
BufferedOutputStream bos = null;
try {
File file1 = new File(srcPath);
File file2 = new File(destPath);
fis = new FileInputStream(file1);
fos = new FileOutputStream(file2);
bis = new BufferedInputStream(fis);
bos = new BufferedOutputStream(fos);
byte[] buffer = new byte[1024];
int len;
while ((len = bis.read(buffer)) != -1){
bos.write(buffer,0,len);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
if(bis != null){
try {
bis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(bos != null){
try {
bos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
// fis.close();
// fos.close();
}
}
@Test
public void test1(){
long start = System.currentTimeMillis();
String srcPath = "香港图书馆.jpeg";
String destPath = "香港图书馆testBuffered.jpeg";
copyFile1(srcPath,destPath);
long end = System.currentTimeMillis();
System.out.println("复制所用的时间为:" + (end - start));//28
}
}