Node.js zlib.createInflate() 方法
zlib.createInflate() 方法是 Zlib 模块的内置应用程序编程接口,用于创建新的 Inflate 对象。
句法:
zlib.createInflate( options )
参数:此方法接受单个参数选项,该选项是包含 zlib 选项的可选参数。
返回值:它返回一个新的 Inflate 对象。
下面的例子说明了 Node.js 中zlib.createInflate() 方法的使用:
示例 1:
// Node.js program to demonstrate the
// createInflate() method
// Including zlib module
var zlib = require('zlib');
// Calling deflate function to compress data
zlib.deflate('Hello World!', function(err, data)
{
if (err)
{
return console.log('err', err);
}
// Calling createInflate method
// to decompress the data again
var gunzip = zlib.createInflate();
gunzip.write(data);
gunzip.on('data', function (data)
{
console.log(data.toString());
});
});
输出:
Hello World!
示例 2:
// Node.js program to demonstrate the
// createInflate() method
// Including zlib module
var zlib = require('zlib');
// Calling deflate function to compress data
zlib.deflate('Decompressed..', function(err, data)
{
if (err)
{
return console.log('err', err);
}
// Calling createInflate method
// to decompress the data again
var gunzip = zlib.createInflate();
gunzip.write(data);
gunzip.on('data', function (data)
{
console.log(data.toString('hex'));
});
});
输出:
4465636f6d707265737365642e2e
参考: https://nodejs.org/api/zlib.html#zlib_zlib_createinflate_options