使用node.js覆盖文件中的一行

时间:2012-07-27 17:37:16

标签: javascript node.js filesystems

使用node.js覆盖大型(2MB +)文本文件中的行的最佳方法是什么?

我目前的方法涉及

  • 将整个文件复制到缓冲区中。
  • 通过换行符(\n)将缓冲区拆分为数组。
  • 使用缓冲区索引覆盖该行。
  • 然后在加入\n后用缓冲区覆盖文件。

2 个答案:

答案 0 :(得分:3)

首先,您需要搜索线的起始位置和结束位置。接下来,您需要使用一个函数来替换该行。我使用我的一个库来获得第一部分的解决方案: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 ();

答案 1 :(得分:0)

也许您可以尝试套餐replace-in-file

假设我们有一个txt文件,如下所示,我们要替换:

第1行->第3行

第2行->第4行

// file.txt
"line1"
"line2"
"line5"
"line6"
"line1"
"line2"
"line5"
"line6"

然后,我们可以这样做:

const replace = require('replace-in-file');

const options = {
    files: "./file.txt",
    from: [/path1/g, /path2/g],
    to: ["path3", "path4"]
};

replace(options)
.then(result => {
    console.log("Replacement results: ",result);
})
.catch(error => {
    console.log(error);
});

更多详细信息,请参阅其文档:https://www.npmjs.com/package/replace-in-file