19

我从来没有使用 javascript 逐行读取文件,而 phantomjs 对我来说是一个全新的球赛。我知道幻影中有一个 read() 函数,但我不完全确定如何在将数据存储到变量后对其进行操作。我的伪代码是这样的:

filedata = read('test.txt');
newdata = split(filedata, "\n");
foreach(newdata as nd) {

  //do stuff here with the line

}

如果有人可以用真正的代码语法帮助我,我对 phantomjs 是否会接受典型的 javascript 或什么感到有点困惑。

4

3 回答 3

28

我不是 JavaScript 或 PhantomJS 专家,但以下代码对我有用:

/*jslint indent: 4*/
/*globals document, phantom*/
'use strict';

var fs = require('fs'),
    system = require('system');

if (system.args.length < 2) {
    console.log("Usage: readFile.js FILE");
    phantom.exit(1);
}

var content = '',
    f = null,
    lines = null,
    eol = system.os.name == 'windows' ? "\r\n" : "\n";

try {
    f = fs.open(system.args[1], "r");
    content = f.read();
} catch (e) {
    console.log(e);
}

if (f) {
    f.close();
}

if (content) {
    lines = content.split(eol);
    for (var i = 0, len = lines.length; i < len; i++) {
        console.log(lines[i]);
    }
}

phantom.exit();
于 2012-08-01T08:15:53.017 回答
22
var fs = require('fs');
var file_h = fs.open('rim_details.csv', 'r');
var line = file_h.readLine();

while(line) {
    console.log(line);
    line = file_h.readLine(); 
}

file_h.close();
于 2013-06-23T18:54:42.307 回答
5

虽然为时已晚,但这是我尝试过并且正在工作的:

var fs = require('fs'),
    filedata = fs.read('test.txt'), // read the file into a single string
    arrdata = filedata.split(/[\r\n]/); // split the string on newline and store in array

// iterate through array
for(var i=0; i < arrdata.length; i++) {

     // show each line 
    console.log("** " + arrdata[i]);

    //do stuff here with the line
}   

phantom.exit();
于 2013-05-04T16:38:48.560 回答