Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 개미수열
- Spring
- i18n
- 브로틀리
- 지뢰찾기
- etag
- 알게뭐냐
- HTTP
- LastModified
- 랜선아미안해
- Kotlin
- 코드스피츠
- 클래스레벨밸리데이션
- kotliln
- jsr303
- 워드프레스
- jsr380
- cross parameter
- 알고리즘
- 이렇게살아야되나자괴감이
- 지수반등
- cache-control
- 리얼월드HTTP
- brotli
- 스프링
Archives
- Today
- Total
취미개발 블로그와 마음수양
자바 - 압축해제 소스 본문
package 챕24입출력; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.OutputStream; import java.util.Scanner; import java.util.zip.ZipEntry; import java.util.zip.ZipInputStream; public class UnzipTest { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); System.out.println("압축파일 이름을 입력하시오~"); String inname = sc.next(); System.out.println("원본 파일 이름을 입력하시오~"); String outname = sc.next(); ZipInputStream inStream = new ZipInputStream( new FileInputStream(inname)); OutputStream outStream = new FileOutputStream(outname); byte[] buffer = new byte[1024]; int read; ZipEntry entry; if((entry = inStream.getNextEntry()) != null){ while((read = inStream.read(buffer))>0){ outStream.write(buffer, 0, read); //단순히 zip 스트림에서 읽어서 출력 스트림에 쓴다. } } outStream.close(); inStream.close(); } }
'Language > java소스' 카테고리의 다른 글
자바 - 시저 암호 구현하기 (0) | 2014.04.18 |
---|---|
자바 - 파일 불러와서 그 안에 들어있는 숫자들 정렬해주는 프로그램 (1) | 2014.04.18 |
자바 - 다중 쓰레드 동기화 (0) | 2014.04.17 |
자바 우주선, 미사일, 적 코드 (1) | 2014.04.16 |
중복되지 않은 난수 6개(로또) 생성하는.. 소스 (0) | 2014.04.16 |