Android에서 프로그래밍 방식으로 압축 풀기
Android에서 프로그래밍 방식으로 파일 압축을 풀면 개발자가 압축된 .zip 아카이브에서 개별 파일을 추출하고 관리할 수 있습니다. 이를 달성하기 위해 사용할 수 있는 몇 가지 기술과 라이브러리가 있습니다.
효율적인 방법 중 하나는 ZipInputStream 클래스를 사용하는 것입니다. 이 클래스는 .zip 아카이브에서 파일을 읽고 압축을 풀기 위한 버퍼링된 입력 스트림을 제공합니다. 아래 코드 조각은 ZipInputStream을 사용하여 파일을 추출하는 방법을 보여줍니다.
<code class="java">private boolean unpackZip(String path, String zipname) { try (InputStream is = new FileInputStream(path + zipname); ZipInputStream zis = new ZipInputStream(new BufferedInputStream(is))) { ZipEntry ze; byte[] buffer = new byte[1024]; int count; while ((ze = zis.getNextEntry()) != null) { String filename = ze.getName(); // Create directories if necessary if (ze.isDirectory()) { File fmd = new File(path + filename); fmd.mkdirs(); continue; } FileOutputStream fout = new FileOutputStream(path + filename); while ((count = zis.read(buffer)) != -1) { fout.write(buffer, 0, count); } fout.close(); zis.closeEntry(); } zis.close(); return true; } catch (IOException e) { e.printStackTrace(); return false; } }</code>
이 코드는 getNextEntry()를 사용하여 .zip 파일의 항목을 반복하고 디렉터리 및 필요한 경우 생성하세요.
peno의 ZipInputStream 최적화는 성능을 크게 향상시킵니다. 루프 외부에서 버퍼가 초기화되도록 보장하여 메모리 사용량과 오버헤드를 줄일 수 있습니다.
위 내용은 ZipInputStream을 사용하여 Android에서 프로그래밍 방식으로 파일의 압축을 해제하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!