📜  Node.js zlib.createInflateRaw() 方法

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

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