足球游戏_中国足彩网¥体育资讯$

三种Node.js写文件的方式
来源:易贤网 阅读:756 次 日期:2016-07-22 15:38:38
温馨提示:易贤网小编为您整理了“三种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();

 });

以上就是本文的全部内容,希望对大家的学习有所帮助。

中国足彩网信息请查看网络编程
易贤网手机网站地址:三种Node.js写文件的方式
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
关于我们 | 联系我们 | 人才招聘 | 网站声明 | 网站帮助 | 非正式的简要咨询 | 简要咨询须知 | 加入群交流 | 手机站点 | 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 足球游戏_中国足彩网¥体育资讯$ 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:hfpxwx
咨询QQ:526150442(9:00—18:00)版权所有:易贤网
云南网警报警专用图标