>  기사  >  웹 프론트엔드  >  JavaScript를 사용하여 웹 브라우저에서 파일을 비동기적으로 압축 해제하려면 어떻게 해야 합니까?

JavaScript를 사용하여 웹 브라우저에서 파일을 비동기적으로 압축 해제하려면 어떻게 해야 합니까?

DDD
DDD원래의
2024-11-02 12:48:02796검색

How Can I Unzip Files Asynchronously in a Web Browser Using JavaScript?

웹 브라우저에서 비동기적으로 파일 압축 풀기

웹 브라우저에 표시하기 위해 압축된 파일 압축 풀기

OpenOffice 파일(.odt 및 .odp)을 표시하려면 ) 웹 브라우저에서는 먼저 압축을 풀어야 합니다. inflate.js로는 이 작업이 충분하지 않을 수 있지만 ZIP 파일을 비동기적으로 압축 해제할 수 있는 강력한 JavaScript 솔루션이 있습니다.

JavaScript Unzipper

Andy G.P의 요소를 통합하여 JavaScript unzipper가 개발되었습니다. Na의 바이너리 파일 리더와 Notmasteryet의 RFC1951은 로직을 확장합니다. ZipFile 클래스는 핵심 기능을 처리합니다.

JavaScript로 구현

다음 JavaScript 코드는 unzipper의 사용법을 보여줍니다.

// Instantiate a ZipFile and provide a callback for when the ZIP is read.
zipFile = new ZipFile(url, doneReading);

// The doneReading callback is triggered when the ZIP is read and handles the extraction of entries.
function doneReading(zip) {
    extractEntries(zip);
}

// Extract entries from the ZIP file.
function extractEntries(zip) {
    for (var i = 0; i < zip.entries.length; i++) {
        var entry = zip.entries[i];

        // Create an entry info div.
        var entryInfo = "<h4><a>" + entry.name + "</a></h4>\n<div>";

        // Create a unique ID for the accordion panel and inject the extracted content into it.
        var randomId = "id-" + Math.floor((Math.random() * 1000000000));
        entryInfo += "<span class='inputDiv'><h4>Content:</h4><span id='" + randomId +
            "'></span></span></div>\n";
        $("#report").append(entryInfo);

        // Asynchronously extract the entry and pass a callback.
        entry.extract(extractCb(randomId));
    }
}

// Extract callback function to add the extracted content to an accordion on the page.
function extractCb(id) {
    return (function(entryName, entryText){
        var content = entryText.replace(new RegExp( "\n", "g" ), "<br/>");
        $("#"+id).html(content);
        $('#report').accordion('destroy');
        $('#report').accordion({collapsible:true, active:false});
    });
}

제한 사항

JavaScript 압축 해제 도구는 목적을 달성하지만 다음과 같은 문제에 직면합니다. 제한 사항:

  • 성능: 특히 대용량 ZIP 파일의 경우 컴파일된 프로그램에 비해 압축 해제 속도가 느릴 수 있습니다.
  • 메모리 사용량: unzipper는 전체 ZIP을 메모리로 읽어 들이므로 시스템 리소스에 큰 부담을 줄 수 있습니다.
  • 제한된 기능: 암호화, Zip64 및 UTF-8로 인코딩된 파일 이름과 같은 모든 ZIP 기능을 지원하지는 않습니다.

위 내용은 JavaScript를 사용하여 웹 브라우저에서 파일을 비동기적으로 압축 해제하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.