当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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




相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Node.js | zlib.createGunzip() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。