是否有一个javascript库可用于合并2个或更多zip文件而不解压缩它们

时间:2015-07-16 07:10:13

标签: javascript file zip

是否有一个javascript库可用于将两个或多个zip文件合并到一个新的zip文件中,而不首先解压缩它们。我一直在寻找,但一直找不到。

我正在补充这个问题,因为我没有得到很好的答案。

首先,这是可能的,并且已经在库中为几种不同的语言完成(特别是合并zip文件而不首先提取它们)。这是由于zip格式的工作方式,请阅读它,而不是告诉我这是不可能的。

其次请不要发布链接到随机zip库,我特别需要将两个zip文件合并在一起而不是任何其他zip相关功能。

最后,我真的不在乎解决方案是针对客户端还是服务器端(或者关于这个主题的个人感受),我只需要在javascript中进行。

提前谢谢

3 个答案:

答案 0 :(得分:1)

小提琴:https://mikethedj4.github.io/kodeWeave/editor/#ca2d1692722e8f6c321c322cd33ed246

经过几个小时尝试失败后,我终于让它与JSZip一起工作了!

JavaScript

// Set Sample URL
document.getElementById("zipurl").value = "https://mikethedj4.github.io/kodeWeave/editor/zips/font-awesome.zip";

$(".loadzipurl").on("click", function() {
  if ( (!document.getElementById("zipurl").value) ) {
    // Do nothing
    console.error("Unable to perform operation as value is blank!");
  } else {
    if ( (document.getElementById("zipurl").value.toLowerCase().substring(0,7) === "http://" ) || (document.getElementById("zipurl").value.toLowerCase().substring(0,8) === "https://") ) {
      JSZipUtils.getBinaryContent(document.getElementById("zipurl").value, function(error, repoFiles) {
        if(error) {
          throw error // or handle err
        }

        var webAppZipBinary = repoFiles;

        // Download as Windows App
        JSZipUtils.getBinaryContent("https://mikethedj4.github.io/kodeWeave/editor/zips/YourLinApp.zip", function(err, data) {
          if(err) {
            throw err // or handle err
          }

          console.log("Creating application!");
          var zip = new JSZip();
          zip.load(data);

          // Your Web Application
          zip.folder("HELLOMOMMY/").load(webAppZipBinary);

          // For 32bit Windows Application
          zip.file("package.json", '{\n  "main"  : "index.html",\n  "name"  : "test",\n  "window": {\n      "toolbar" : false,\n      "icon"    : "app/icons/128.png",\n      "width"   : 1000,\n      "height"  : 600,\n      "position": "center"\n  }\n}');
          zip.file("index.html", '<!doctype html>\n<html>\n <head>\n    <title>test</title>\n    <style>\n      iframe {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        overflow: visible;\n        border: 0;\n      }\n    </style>\n  </head>\n <body>\n    <iframe src="app/index.html"></iframe>\n  </body>\n</html>');

          // Export your application
          var content = zip.generate({type:"blob"});
          saveAs(content, "test-win.zip");
          return false;
        });
      });
    } else {
      console.error("Error! \"http://\" and \"https://\" urls are only supported!");
    }
  }
});

HTML

<input type="text" id="zipurl" placeholder="http://">
<button class="loadzipurl">Export Application</button>

答案 1 :(得分:0)

我从来没有使用JS来压缩压缩文件,但合并多个zip而不解压缩它们听起来对我来说是不可能的。对我而言,就像做煎蛋而不打破鸡蛋......

如果我错了,请纠正我。

答案 2 :(得分:0)

几天前,客户端(我的意思是使用JavaScript)完全不支持文件处理,但现在部分支持了一些限制。您可以使用HTML 5 API在此帮助下阅读图像/ PDF等。但我仍然怀疑我们可以在客户端进行此类操作(提取或合并zip文件)。

我建议在服务器端做这些事情。