📜  Node.js zlib.createGunzip() 方法

📅  最后修改于: 2022-05-13 01:56:33.518000             🧑  作者: Mango

Node.js zlib.createGunzip() 方法

zlib.createGunzip() 方法是 Zlib 模块的内置应用程序编程接口,用于创建新的 Gunzip 对象。

句法:

zlib.createGunzip( options )

参数:此方法接受单个参数选项,该选项是包含 zlib 选项的可选参数。

返回值:它返回一个新的 Gunzip 对象。

下面的例子说明了 Node.js 中zlib.createGunzip() 方法的使用:

示例 1:

// Node.js program to demonstrate the     
// createGunzip() method
  
// Including zlib module
var zlib = require('zlib');
  
// Calling gzip function to compress data
zlib.gzip('GeeksforGeeks', function(err, data) {
  if (err) { 
    return console.log('err', err);
  }
  
  // Calling createGunzip method
  // to decompress the data again
  var gunzip = zlib.createGunzip();
  gunzip.write(data);
  gunzip.on('data', function (data)
   {
      console.log(data.toString());
  });
});

输出:

GeeksforGeeks

示例 2:

// Node.js program to demonstrate the     
// createGunzip() method
  
// Including zlib module
var zlib = require('zlib');
  
// Calling gzip function to compress data
zlib.gzip('GfG', function(err, data) {
  if (err) { 
    return console.log('err', err);
  }
  
  // Calling createGunzip method
  // to decompress the data again
  var gunzip = zlib.createGunzip();
  gunzip.write(data);
  gunzip.on('data', function (data)
   {
      // Encoding the data
      console.log(data.toString('hex'));
  });
});

输出:

476647

参考: https://nodejs.org/api/zlib.html#zlib_zlib_creategunzip_options