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


Node.js zlib.createInflateRaw()用法及代码示例


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

用法:

zlib.createInflateRaw( options )

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



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

以下示例说明了Node.js中zlib.createInflateRaw()方法的使用:

范例1:

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

输出:

Decompressed..

范例2:

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

输出:

RGVjb21wcmVzc2VkLi4=

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




相关用法


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