當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。