使用javascript列出tar文件的内容

时间:2015-06-30 06:40:38

标签: javascript jsp

我有一个jsp文件,其中我在javascript中编写一个函数,它作为参数,一个tar文件名并返回tar文件包含的文件的文件名列表。怎么做?

1 个答案:

答案 0 :(得分:0)

您是否尝试过使用UnTar.js?它的开源js库

编辑: 提供清晰的使用示例

function updateProgressBar(e) { ... update UI element ... }
function displayZipContents(e) { ... display contents of the file ... }

var unzipper = new bitjs.archive.Unzipper(zipFileArrayBuffer);
unzipper.addEventListener("progress", updateProgressBar);
unzipper.addEventListener("finish", displayZipContents);
unzipper.start();

更多信息here