자세한 설명은 시간날때 하도록 하겠습니다.
테스트로 한번 짜본 소스이고 함수로 하나 만들어서 사용하면 편하실꺼에요
package sdf; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.OutputStream; import java.util.zip.ZipEntry; import java.util.zip.ZipInputStream; public class b { public static void main(String [] args){ String zipFile="C:\\test.zip"; String unZipPath="C:\\"; try{ ZipInputStream zipIs = new ZipInputStream(new FileInputStream(zipFile)); ZipEntry ze; while((ze=zipIs.getNextEntry()) != null){ OutputStream out = new FileOutputStream(unZipPath+""+ze.getName()); byte[] Byte = new byte[4096]; int len; while((len = zipIs.read(Byte))>0){ out.write(Byte,0,len); } out.close(); } zipIs.close(); }catch (Exception e) { // TODO: handle exception } } }
'Programming > 과거포스팅' 카테고리의 다른 글
안드로이드 구글 맵 연동_1 (구글맵 키 발급) (0) | 2012.10.16 |
---|---|
자바스크립트 파일 업로드 이미지 미리보기(javaScript file upload img preview) (23) | 2012.07.26 |
C2DM Message Send (Server logic) (0) | 2012.04.25 |
C2DM 연동 AUTH값 받아오기 (4) | 2012.04.23 |
No subject alternative DNS name matching android.apis.google.com found. (0) | 2012.04.23 |