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


Node.js zlib.deflateSync()用法及代碼示例


zlib.deflateSync()方法是Zlib模塊的內置應用程序編程接口,用於通過Deflate壓縮大量數據。

用法:

zlib.deflateSync( buffer, options )

參數:此方法接受上述和以下所述的兩個參數:



  • buffer:此參數保存類型為Buffer,TypedArray,DataView,ArrayBuffer,字符串的緩衝區。
  • options:此參數保存zlib選項的值。

返回值:它使用deflate返回數據塊。

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

範例1:

// Node.js program to demonstrate the      
// zlib.deflateSync() method   
  
// Including zlib module 
var zlib = require('zlib'); 
  
// Declaring input and assigning 
// it a value string 
var input = "GfG CS-Portal"; 
  
// Calling deflateSync method 
var deflated = zlib.deflateSync(input); 
  
console.log(deflated);

輸出:

<Buffer 78 9c 73 4f 73 57 70 0e d6 0d c8 2f 2a 49 cc 01 00 1b 48 04 4a>

範例2:

// Node.js program to demonstrate the      
// zlib.deflateSync() method   
  
// Including zlib module 
var zlib = require('zlib'); 
  
// Declaring input and assigning 
// it a value string 
var input = "GfG CS-Portal"; 
  
// Calling deflateSync method and converting 
// the deflate to string encoded with hex 
var deflated = zlib.deflateSync(input).toString('hex'); 
  
console.log(deflated);

輸出:

789c734f7357700ed60dc82f2a49cc01001b48044a

參考: https://nodejs.org/api/zlib.html#zlib_zlib_deflatesync_buffer_options




相關用法


注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 Node.js | zlib.deflateSync() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。