最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當(dāng)前位置: 首頁 - 科技 - 知識(shí)百科 - 正文

Node.js readline 逐行讀取、寫入文件內(nèi)容的示例

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:18:31
文檔

Node.js readline 逐行讀取、寫入文件內(nèi)容的示例

Node.js readline 逐行讀取、寫入文件內(nèi)容的示例:本文介紹了運(yùn)用readline逐行讀取的兩種實(shí)現(xiàn),分享給大家,具體如下: 什么是Readline Readline是Node.js里實(shí)現(xiàn)標(biāo)準(zhǔn)輸入輸出的封裝好的模塊,通過這個(gè)模塊我們可以以逐行的方式讀取數(shù)據(jù)流。使用require(readline)可以引用模塊。 效果圖如下: 左邊1
推薦度:
導(dǎo)讀Node.js readline 逐行讀取、寫入文件內(nèi)容的示例:本文介紹了運(yùn)用readline逐行讀取的兩種實(shí)現(xiàn),分享給大家,具體如下: 什么是Readline Readline是Node.js里實(shí)現(xiàn)標(biāo)準(zhǔn)輸入輸出的封裝好的模塊,通過這個(gè)模塊我們可以以逐行的方式讀取數(shù)據(jù)流。使用require(readline)可以引用模塊。 效果圖如下: 左邊1

本文介紹了運(yùn)用readline逐行讀取的兩種實(shí)現(xiàn),分享給大家,具體如下:

什么是Readline

Readline是Node.js里實(shí)現(xiàn)標(biāo)準(zhǔn)輸入輸出的封裝好的模塊,通過這個(gè)模塊我們可以以逐行的方式讀取數(shù)據(jù)流。使用require(“readline”)可以引用模塊。

效果圖如下:

左邊1.log 為源文件

右邊1.readline.log為復(fù)制后的文件

下邊為命令行輸出

實(shí)現(xiàn)方式一:

var readline = require('readline'); 
var fs = require('fs'); 
var os = require('os'); 
var fReadName = './1.log'; 
var fWriteName = './1.readline.log'; 
var fRead = fs.createReadStream(fReadName); 
var fWrite = fs.createWriteStream(fWriteName); 
var objReadline = readline.createInterface({ 
 input: fRead, 
// 這是另一種復(fù)制方式,這樣on('line')里就不必再調(diào)用fWrite.write(line),當(dāng)只是純粹復(fù)制文件時(shí)推薦使用 
// 但文件末尾會(huì)多算一次index計(jì)數(shù) sodino.com 
// output: fWrite, 
// terminal: true 
}); 
 
 
var index = 1; 
objReadline.on('line', (line)=>{ 
 var tmp = 'line' + index.toString() + ':' + line; 
 fWrite.write(tmp + os.EOL); // 下一行 
 console.log(index, line); 
 index ++; 
}); 
 
objReadline.on('close', ()=>{ 
 console.log('readline close...'); 
}); 

實(shí)現(xiàn)方式二:

var readline = require('readline'); 
var fs = require('fs'); 
var os = require('os'); 
 
var fReadName = './1.log'; 
var fWriteName = './1.readline.log'; 
var fRead = fs.createReadStream(fReadName); 
var fWrite = fs.createWriteStream(fWriteName); 
 
var enableWriteIndex = true; 
fRead.on('end', ()=>{ 
 console.log('end'); 
 enableWriteIndex = false; 
}); 
 
var objReadline = readline.createInterface({ 
 input: fRead, 
 output: fWrite, 
 terminal: true 
}); 
 
var index = 1; 
fWrite.write('line' + index.toString() +':'); 
objReadline.on('line', (line)=>{ 
 console.log(index, line); 
 if (enableWriteIndex) { 
 // 由于readline::output是先寫入后調(diào)用的on('line')事件, 
 // 所以已經(jīng)讀取文件完畢時(shí)就不需要再寫行號(hào)了... sodino.com 
 index ++; 
 var tmp = 'line' + index.toString() + ':'; 
 fWrite.write(tmp); 
 } 
}); 


objReadline.on('close', ()=>{ 
 console.log('readline close...'); 
}); 

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

Node.js readline 逐行讀取、寫入文件內(nèi)容的示例

Node.js readline 逐行讀取、寫入文件內(nèi)容的示例:本文介紹了運(yùn)用readline逐行讀取的兩種實(shí)現(xiàn),分享給大家,具體如下: 什么是Readline Readline是Node.js里實(shí)現(xiàn)標(biāo)準(zhǔn)輸入輸出的封裝好的模塊,通過這個(gè)模塊我們可以以逐行的方式讀取數(shù)據(jù)流。使用require(readline)可以引用模塊。 效果圖如下: 左邊1
推薦度:
標(biāo)簽: 文件 rea 寫入文件
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top