Node.js zlib.gzipSync() 方法
zlib.gzipSync() 方法是 Zlib 模块的内置应用程序编程接口,用于使用 Gzip 压缩数据块。
句法:
zlib.gzipSync( buffer, options )
参数:此方法接受上面提到的两个参数,如下所述:
- buffer:该参数保存Buffer、TypedArray、DataView、ArrayBuffer、 字符串类型的缓冲区。
- options:此参数保存 zlib 选项值。
返回值:它使用 Gzip 返回数据块。
下面的例子说明了在 Node.js 中zlib.gzipSync() 方法的使用:
示例 1:
// Node.js program to demonstrate the
// zlib.gzipSync() method
// Including zlib module
var zlib = require('zlib');
// Declaring input and assigning
// it a value string
var input = "Nidhi";
// Calling brotliDecompressSync method
var gzi = zlib.gzipSync(input);
console.log(gzi);
输出:
示例 2:
// Node.js program to demonstrate the
// zlib.gzipSync() method
// Including zlib module
var zlib = require('zlib');
// Declaring input and assigning
// it a value string
var input = "Nidhi";
// Calling brotliDecompressSync method
var gzi = zlib.gzipSync(input).toString('hex');
console.log(gzi);
输出:
1f8b0800000000000003f3cb4cc9c8040013f25bb105000000
参考: https://nodejs.org/api/zlib.html#zlib_zlib_gzipsync_buffer_options