您好,欢迎访问一九零五行业门户网

三种Node.js写文件的方式_node.js

本文分享了node.js写文件的三种方式,具体内容和如下
1、通过管道流写文件
采用管道传输二进制流,可以实现自动管理流,可写流不必当心可读流流的过快而崩溃,适合大小文件传输(推荐)
var readstream = fs.createreadstream(decodeuricomponent(root + filepath.pathname)); // 必须解码url readstream.pipe(res); // 管道传输 res.writehead(200,{ 'content-type' : conttype }); // 出错处理 readstream.on('error', function() { res.writehead(404,'can not find this page',{ 'content-type' : 'text/html' }); readstream.pause(); res.end('404 can not find this page'); console.log('error in writing or reading '); });
2、手动管理流写入
手动管理流,适合大小文件的处理
var readstream = fs.createreadstream(decodeuricomponent(root + filepath.pathname)); res.writehead(200,{ 'content-type' : conttype }); // 当有数据可读时,触发该函数,chunk为所读取到的块 readstream.on('data',function(chunk) { res.write(chunk); }); // 出错时的处理 readstream.on('error', function() { res.writehead(404,'can not find this page',{ 'content-type' : 'text/html' }); readstream.pause(); res.end('404 can not find this page'); console.log('error in writing or reading '); }); // 数据读取完毕 readstream.on('end',function() { res.end(); });
3、通过一次性读完数据写入
一次性读取完文件所有内容,适合小文件(不推荐)
fs.readfile(decodeuricomponent(root + filepath.pathname), function(err, data) { if(err) { res.writehead(404,'can not find this page',{ 'content-type' : 'text/html' }); res.write('404 can not find this page'); }else { res.writehead(200,{ 'content-type' : conttype }); res.write(data); } res.end(); });
以上就是本文的全部内容,希望对大家的学习有所帮助。
其它类似信息

推荐信息