createWriteStream vs writeFile?

三世轮回 提交于 2019-12-07 02:17:01

问题


What is the basic difference between these two operations ?

someReadStream.pipe(fs.createWriteStream('foo.png'));

vs

someReadStream.on('data', function(chunk) { blob += chunk } );
someReadStream.on('end', function() { fs.writeFile('foo.png', blob) });

When using request library for scraping, I can save pics (png, bmp) etc.. only with the former method and with the latter one there is same gibbersh (binary) data but image doesn't render.

How are they different ?


回答1:


When you are working with streams in node.js you should prefer to pipe them.

According to Node.js’s stream-event docs, data events emit either buffers (by default) or strings (if encoding was set).

When you are working with text streams you can use data events to concatenate chunks of string data together. Then you'll be able to work with your data as one string.

But when working with binary data it's not so simple, because you'll receive buffers. To concatenate buffers you use special methods like Buffer.concat. It's possible to use a similar approach for binary streams:

var buffers = [];
readstrm.on('data', function(chunk) {
    buffers.push(chunk);
});
readstrm.on('end', function() {
    fs.writeFile('foo.png', Buffer.concat(buffers));
});

You can notice when something goes wrong by checking the output file's size.



来源:https://stackoverflow.com/questions/14170210/createwritestream-vs-writefile

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!