三种Node.js写文件的方式
作者:bea
本文分享了Node.js写文件的三种方式,具体内容和如下 1、通过管道流写文件 采用管道传输二进制流,可以实现自动管理流,可写流不必当心可读流流的过快而崩溃,适合大小文件传输(推荐) var readStream = fs.createReadStream(decodeURIComponent(root + filepath.pathname)); // 必须解码url readStream.pipe(res); // 管道传输 res.writeHead(200,
本文分享了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();
});
以上就是本文的全部内容,希望对大家的学习有所帮助。
有用 | 无用
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();
});
以上就是本文的全部内容,希望对大家的学习有所帮助。
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- javascript html5移动端轻松实现文件上传
- javascript事件绑定学习要点
- js实现分割上传大文件
- js实现ctrl+v粘贴上传图片(兼容chrome、firefox、ie11)
- 基于jQuery的网页影音播放器jPlayer的基本使用教程
- 利用jQuery设计一个简单的web音乐播放器的实例分享
- Bootstrap~多级导航(级联导航)的实现效果【附代码】
- js实现数组冒泡排序、快速排序原理
- Bootstrap多级导航栏(级联导航)的实现代码
- javascript html实现网页版日历代码
- 一道关于JavaScript变量作用域的面试题
- 理解javascript函数式编程中的闭包(closure)
- jQuery实现带水平滑杆的焦点图动画插件
- javascript对象的创建和访问
- js获取当前日期时间及其它日期操作汇总
- 使用JQuery实现智能表单验证功能
- js表单处理中单选、多选、选择框值的获取及表单的序列化
- JS实现设置ff与ie元素绝对位置的方法
- jQuery控制frames及frame页面JS的方法