在 Adobe Air/Javascript 中压缩和解压缩文件
我并不是特别使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将几乎任何 ActionScript 库与 html/javascript Air 应用程序一起使用。示例:
这会读取 zip 文件并将内容写入桌面上的输出文件夹(假定您已包含 jQuery 和 SDK 中的 AIRAliases.js 文件):
You can use almost any actionscript library with html/javascript air app. Example:
<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):
我使用 javascript 为 Adobe 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