> Java > java지도 시간 > Android에서 프로그래밍 방식으로 ZIP 파일의 압축을 푸는 방법은 무엇입니까?

Android에서 프로그래밍 방식으로 ZIP 파일의 압축을 푸는 방법은 무엇입니까?

Linda Hamilton
풀어 주다: 2024-10-30 05:45:28
원래의
548명이 탐색했습니다.

How to Programmatically Unzip ZIP Files in Android?

Android에서 프로그래밍 방식으로 ZIP 파일 압축 풀기

파일 압축 풀기는 많은 Android 애플리케이션에서 기본적인 작업입니다. ZIP 아카이브에서 프로그래밍 방식으로 파일을 추출하려면 고려할 수 있는 몇 가지 접근 방식이 있습니다.

효율적인 방법 중 하나는 Android SDK에서 제공되는 ZipInputStream 클래스를 사용하는 것입니다. 이 클래스를 사용하면 ZIP 파일의 항목을 반복하고 개별적으로 추출할 수 있습니다.

<code class="java">private boolean unpackZip(String path, String zipname) {
    InputStream is;
    ZipInputStream zis;

    try {
        is = new FileInputStream(path + zipname);
        zis = new ZipInputStream(new BufferedInputStream(is));

        ZipEntry ze;
        byte[] buffer = new byte[1024];
        int count;

        // Traverse the entries in the ZIP file
        while ((ze = zis.getNextEntry()) != null) {
            // Handle directory creation if necessary
            if (ze.isDirectory()) {
                File fmd = new File(path + ze.getName());
                fmd.mkdirs();
                continue;
            }

            // Extract the individual file
            FileOutputStream fout = new FileOutputStream(path + ze.getName());
            while ((count = zis.read(buffer)) != -1) {
                fout.write(buffer, 0, count);
            }
            fout.close();
            zis.closeEntry();
        }

        zis.close();
    } catch (IOException e) {
        e.printStackTrace();
        return false;
    }

    return true;
}</code>
로그인 후 복사

이 코드 조각은 Android 애플리케이션의 ZIP 아카이브에서 파일을 추출하는 간단하고 효율적인 방법을 제공합니다.

위 내용은 Android에서 프로그래밍 방식으로 ZIP 파일의 압축을 푸는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿