以下のデータを含むファイルがあります。
8745KJHSDF CRM NATL ABC DAY MC CRM NATL JRKY DAY245874K001S00002000001759300.000.000.0000.0 EA 000001 001 O 50 0 2 20200323 910079105MC CRM SANDWICH9990170001700017000170001700017000170001700017000170001700017000170001700017000170001700017000170001700017000170001700017000170001700017
ファイルを読み取った後、オブジェクトの Json/Array に変換したいと考えています。しかし、とにかく私は解決策を見つけることができません。
コード:
fs.createReadStream(baseFileUrl + "/data.20200409")
//.pipe(iconv.decodeStream('ascii'))
.pipe(es.split())
.pipe(es.mapSync(function(line){
console.log(line);
// pause the readstream
s.pause();
lineNr += 1;
// process line here and call s.resume() when rdy
// function below was for logging memory usage
//logMemoryUsage(lineNr);
// resume the readstream, possibly from a callback
s.resume();
})
.on('error', function(err){
console.log('Error while reading file.', err);
})
.on('end', function(data){
console.log(data)
console.log('Read entire file.')
})
);