我无法解决 NodeJS 中的以下文件处理问题:我有一个文件 emp.txt,其中包含固定记录大小的员工数据,格式如下:
EmpID:Name:Dept:Salary
1001:Harry:Sales:23000
1002:Sarita:Accounts:20000
1003:Monika:TechSupport:35000
Read the file. Display sum of salary of all employees
我尝试使用以下代码成功读取文件,但没有获得解决确切问题的逻辑。我的读取文件的代码:
var fs = require("fs");
console.log("Going to read file!");
fs.readFile('emp.txt', function(err, data){
if(err){
return console.error(err);
}
console.log(data.toString().split(":"));
console.log("read Successfully");
})
Salary读取字段emp.txt并计算其总和的正确逻辑是什么?
小怪兽爱吃肉
汪汪一只猫
相关分类