在 Adob​​e Air/Javascript 中压缩和解压缩文件

发布于 2024-11-18 23:32:44 字数 253 浏览 1 评论 0原文

我并不是特别使用 Flex,但我在 adobe air 应用程序中使用 javascript、html 和 css。我希望能够解压缩和压缩文件。我查看了一些库,但没有一个能按照我的需要工作。我在某处读到我可以使用 Fzip 库 但我需要最好在 javascript 中执行此操作,但文件是动作脚本文件。有什么建议吗?谢谢。

I'm not particularly using Flex but I am using javascript and html and css in a adobe air application. I would like to be able to unzip and zip files. I've looked at a few libraries but none worked as I needed it to. I read somewhere that I could use Fzip library but I need to do this in javascript most preferably but the files are actionscript files. Any advice? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无需解释 2024-11-25 23:32:44

您可以将几乎任何 ActionScript 库与 html/javascript Air 应用程序一起使用。示例:

  1. 下载 airxzip 的 swc 文件:http://code.google.com/p/airxzip /downloads/list
  2. 将 swc 重命名为 zip 并解压缩
  3. 将包含的 library.swf 重命名为 coltware_airxzip.swf
  4. 在页面上包含该库,如下所示:

这会读取 zip 文件并将内容写入桌面上的输出文件夹(假定您已包含 jQuery 和 SDK 中的 AIRAliases.js 文件):

var input = new air.File();
input.addEventListener(air.Event.SELECT, function(event) {
    var outputDirectory = air.File.desktopDirectory.resolvePath('output');
    var reader = new window.runtime.com.coltware.airxzip.ZipFileReader();
    reader.open(event.currentTarget);
    $.each(reader.getEntries(), function(i, entry) {
        if (!entry.isDirectory()) {
            var stream = new air.FileStream();
            stream.open(outputDirectory.resolvePath(entry.getFilename()), air.FileMode.WRITE);
            stream.writeBytes(reader.unzip(entry));
            stream.close();
        }
    });
});
input.browseForOpen('Select a zip file...', [new air.FileFilter('Zip files', '*.zip')]);

You can use almost any actionscript library with html/javascript air app. Example:

  1. Download swc file for airxzip: http://code.google.com/p/airxzip/downloads/list
  2. Rename swc to zip and unzip it
  3. Rename included library.swf to coltware_airxzip.swf
  4. Include the library on your page like this:

<script src="coltware_airxzip.swf" type="application/x-shockwave-flash"></script>

This reads a zip file and writes contents to output folder on the desktop (given you have included jQuery and the AIRAliases.js file from the SDK):

var input = new air.File();
input.addEventListener(air.Event.SELECT, function(event) {
    var outputDirectory = air.File.desktopDirectory.resolvePath('output');
    var reader = new window.runtime.com.coltware.airxzip.ZipFileReader();
    reader.open(event.currentTarget);
    $.each(reader.getEntries(), function(i, entry) {
        if (!entry.isDirectory()) {
            var stream = new air.FileStream();
            stream.open(outputDirectory.resolvePath(entry.getFilename()), air.FileMode.WRITE);
            stream.writeBytes(reader.unzip(entry));
            stream.close();
        }
    });
});
input.browseForOpen('Select a zip file...', [new air.FileFilter('Zip files', '*.zip')]);
半暖夏伤 2024-11-25 23:32:44

我使用 javascript 为 Adob​​e Air + FZip 编写了一个示例应用程序。

我想我会在这里分享这一点,以防其他人通过谷歌到达这里。

永远不会有太多的工作示例,对吗?

示例-> http://www.drybydesign.com/?p=233

I wrote a sample app for Adobe Air + FZip using javascript.

Figured I'd share that here in case anyone else arrives here via Google.

Can never have too many working examples right?

Example -> http://www.drybydesign.com/?p=233

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文