纯 JavaScript 实现的 RAR 压缩文件浏览库:rar.js
rar.js提供了一个RAR格式的纯javascript实现,允许你在客户端和服务器端提取或操纵打包数据。
它支持多种输入:AJAX, File API (HTML5) 和 local disk (NodeJS)。
rar.js 用到了 dataview-extra 和 reader.js。
- Large file support (currently the entire file will be in memory when
RarArchive.get
is called) - Decompression support
- Encryption support
- Recognise volumes/split archives
- Parse other entries (e.g. comments)
示例代码:
var archive = RarArchive(file, function(err) { if(err) { // An error occurred (not a rar, read error, etc) return; } // Use archive });
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!