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


Node.js fs.readFile()用法及代碼示例


fs.readFile()方法是一種內置方法,用於讀取文件。此方法將整個文件讀入緩衝區。要加載fs模塊,我們使用require()方法。例如:var fs = require('fs');

用法:

fs.readFile( filename, encoding, callback_function )

參數:該方法接受上述和以下所述的三個參數:


  • filename:它保存要讀取的文件名或完整路徑(如果存儲在其他位置)。
  • encoding:它保存文件的編碼。默認值為“ utf8”。
  • callback_function:這是在讀取文件後調用的回調函數。它帶有兩個參數:
    • err:如果發生任何錯誤。
    • data:文件內容。

返回值:它返回存儲在文件中的內容/數據或錯誤(如果有)。

以下示例說明了Node.js中的fs.readFile()方法:

範例1:

// Node.js program to demonstrate 
// the fs.readFile() method 
  
// Include fs module 
var fs = require('fs'); 
  
// Use fs.readFile() method to read the file 
fs.readFile('Demo.txt', 'utf8', function(err, data){ 
      
    // Display the file content 
    console.log(data); 
}); 
  
console.log('readFile called');

輸出:

readFile called
undefined

說明:輸出未定義,表示文件為空。它開始讀取文件並同時執行代碼。讀取文件後,將調用該函數,同時打印“ readFile named”語句,然後打印文件的內容。

範例2:

// Node.js program to demonstrate 
// the fs.readFile() method 
  
// Include fs module 
var fs = require('fs'); 
  
// Use fs.readFile() method to read the file 
fs.readFile('demo.txt', (err, data) => { 
    console.log(data); 
 })

輸出:

undefined

參考: https://nodejs.org/api/fs.html#fs_fs_readfile_path_options_callback



相關用法


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