zlib.unzipSync()方法是Zlib模块的内置应用程序编程接口,用于通过Unzip解压缩数据块。
用法:
zlib.unzipSync( buffer, options )
参数:此方法接受上述和以下所述的两个参数:
- buffer:它可以是Buffer,TypedArray,DataView,ArrayBuffer和字符串的类型。
- options:它是一个可选参数,其中包含zlib选项。
返回值:它使用Unzip返回数据块。
以下示例说明了Node.js中zlib.unzipSync()方法的使用:
范例1:
// Node.js program to demonstrate the
// zlib.unzipSync() method
// Including zlib module
var zlib = require('zlib');
// Declaring input and assigning
// it a value string
var input = "NidhiSingh";
// Calling gzipSync method
var gzi = zlib.gzipSync(input);
// Calling unzipSync method
var decom = zlib.unzipSync(
new Buffer.from(gzi)).toString('base64');
console.log(decom);
输出:
TmlkaGlTaW5naA==
范例2:
// Node.js program to demonstrate the
// zlib.unzipSync() method
// Including zlib module
var zlib = require('zlib');
// Declaring input and assigning
// it a value string
var input = "NidhiSingh";
// Calling gzipSync method
var gzi = zlib.gzipSync(input).toString('hex');
// Calling unzipSync method
var decom = zlib.unzipSync(
new Buffer.from(gzi, 'hex')).toString('hex');
console.log(decom);
输出:
4e6964686953696e6768
参考: https://nodejs.org/api/zlib.html#zlib_zlib_unzipsync_buffer_options
相关用法
- Node.js GM implode()用法及代码示例
- Node.js GM recolor()用法及代码示例
- Node.js GM border()用法及代码示例
- Node.js GM whitePoint()用法及代码示例
- Node.js GM randomThreshold()用法及代码示例
- Node.js GM magnify()用法及代码示例
- Node.js GM orderedDither()用法及代码示例
- Node.js GM modulate()用法及代码示例
- Node.js GM flip()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Node.js | zlib.unzipSync() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。