-
Notifications
You must be signed in to change notification settings - Fork 2
/
file15.java
65 lines (58 loc) · 1.94 KB
/
file15.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
package io;
import java.io.FileInputStream;
import java.io.FileOutputStream;
//이미지(binary) - stream
/*
Stream 유의사항
1. byte[] 변환
2. InputStream -> read
3. write -> flush
*/
public class file15 {
public static void main(String[] args) {
try {
//원본이미지
/*
String img = "D:\\webpage\\agree\\src\\main\\java\\io\\img.png";
FileInputStream fs = new FileInputStream(img); //파일을 로드
byte[] by = new byte[fs.available()]; //이미지 전체 용량 byte
fs.read(by); //해당 이미지를 읽은 후 캐시메모리에 저장
*/
//복사 이미지 (반복문 없이 처리)
/*
String cpimg = "D:\\webpage\\agree\\src\\main\\java\\io\\";
FileOutputStream os = new FileOutputStream(cpimg+"img2.png");
os.write(by); //복사를 시행함
os.flush();
os.close();
*/
//반복문으로 progress를 구현
String img = "D:\\webpage\\agree\\src\\main\\java\\io\\img.png";
FileInputStream fs = new FileInputStream(img); //파일을 로드
byte[] by = new byte[fs.available() / 100]; //이미지 전체 용량 byte
String cpimg = "D:\\webpage\\agree\\src\\main\\java\\io\\";
FileOutputStream os = new FileOutputStream(cpimg+"img2.png");
int i = 0; //읽은 바이트 수
int check = 0; //읽은 횟수
while(true) { //무한루프 적용
i = fs.read(by); //byte 숫자 (전체용량을 / 100) => 분해해서 용량을 읽어들임
if(i == -1) { //더 이상 읽을 내용이 없을 경우 무한 반복문 종료
break;
}
else {
//해당 byte만큼 지속적으로 이미지 조합 (byte객체이름,0,읽은 byte 숫자)
os.write(by, 0, i);
}
check++;
if(check % 2 == 0) { //progress 현재 상황
System.out.println(check + "%");
}
}
os.flush();
os.close();
fs.close();
}catch(Exception e) {
e.getMessage();
}
}
}