码迷,mamicode.com
首页 > Web开发 > 详细

NodeJS CSV导出文件名和内容乱码解决

时间:2014-11-05 00:11:05      阅读:575      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   os   java   sp   文件   div   

// 解决不同浏览器下载文件名称乱码
var userAgent = (req.headers[‘user-agent‘]||‘‘).toLowerCase();
res.set(‘Content-Type‘, ‘application/octet-stream;charset=utf-8‘);

if(userAgent.indexOf(‘msie‘) >= 0 || userAgent.indexOf(‘chrome‘) >= 0) {
    res.setHeader(‘Content-Disposition‘, ‘attachment; filename=‘ + encodeURIComponent(filename));
} else if(userAgent.indexOf(‘firefox‘) >= 0) {
    res.setHeader(‘Content-Disposition‘, ‘attachment; filename*="utf8\‘\‘‘ + encodeURIComponent(filename)+‘"‘);
} else {
    res.setHeader(‘Content-Disposition‘, ‘attachment; filename=‘ + new Buffer(filename).toString(‘binary‘));
}

// 解决excel打开内容乱码
var dataBuffer = Buffer.concat([new Buffer(‘\xEF\xBB\xBF‘, ‘binary‘), new Buffer(data)]);
res.send(dataBuffer);

原文地址:http://imziv.com/blog/article/read.htm?id=55

NodeJS CSV导出文件名和内容乱码解决

标签:blog   http   io   ar   os   java   sp   文件   div   

原文地址:http://www.cnblogs.com/zivxiaowei/p/4075052.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!