使用node.js覆盖文件中的一行
使用node.js覆盖大型(2MB +)文本文件中一行的最佳方式是什么?
我目前的方法涉及
n
)将缓冲区分割成数组。 n
后用缓冲区覆盖文件。 首先,您需要搜索线路的起点和结束位置。 接下来,您需要使用一个函数来替换该行。 我有使用我的一个库的第一部分的解决方案:Node-BufferedReader。
var lineToReplace = "your_line_to_replace";
var startLineOffset = 0;
var endLineOffset = 0;
new BufferedReader ("your_file", { encoding: "utf8" })
.on ("error", function (error){
console.log (error);
})
.on ("line", function (line, byteOffset){
startLineOffset = endLineOffset;
endLineOffset = byteOffset - 1; //byteOffset is the offset of the NEXT byte. -1 if it's the end of the file, if that's the case, endLineOffset = <the file size>
if (line === lineToReplace ){
console.log ("start: " + startLineOffset + ", end: " + endLineOffset +
", length: " + (endLineOffset - startLineOffset));
this.interrupt (); //interrupts the reading and finishes
}
})
.read ();
链接地址: http://www.djcxy.com/p/11035.html