三种Node.js写文件的方式

2019-12-17,,,

本文分享了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:fs文件系统模块
  • 基于node.js的fs核心模块读写文件操作(实例讲解)
  • Node.js本地文件操作之文件拷贝与目录遍历的方法
  • Node.js实现在目录中查找某个字符串及所在文件
  • Node.js 文件夹目录结构创建实例代码
  • Node.js查找当前目录下文件夹实例代码
  • Node.JS 循环递归复制文件夹目录及其子文件夹下的所有文件
  • Node.js文件操作详解
  • 在Node.js中实现文件复制的方法和实例
  • node.js基于fs模块对系统文件及目录进行读写操作的方法详解

《三种Node.js写文件的方式.doc》

下载本文的Word格式文档,以方便收藏与打印。