博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在ASP.NET中,IE与Firefox下载文件带汉字名时乱码的解决方法
阅读量:4959 次
发布时间:2019-06-12

本文共 1977 字,大约阅读时间需要 6 分钟。

解决办法:

HttpContext.Current.Response.Clear();HttpContext.Current.Response.Buffer = true;HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");HttpContext.Current.Response.Charset = "gb2312";HttpContext.Current.Response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.xls", string.IsNullOrEmpty(fileName) ? DateTime.Now.ToString("yyyyMMddHHmmssfff") : System.Web.HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8)));HttpContext.Current.Response.BinaryWrite(ms.ToArray());HttpContext.Current.Response.End();

不过上述方法在firefox上还是乱码

 

终极解决办法:

Encoding encoding;                string outputFileName = null;                string browser = HttpContext.Current.Request.UserAgent.ToUpper();                if (browser.Contains("MS") == true && browser.Contains("IE") == true)                {                    outputFileName = HttpUtility.UrlEncode(fileName);                    encoding = System.Text.Encoding.Default;                }                else if (browser.Contains("FIREFOX") == true)                {                    outputFileName = fileName;                    encoding = System.Text.Encoding.GetEncoding("GB2312");                }                else                {                    outputFileName = HttpUtility.UrlEncode(fileName);                    encoding = System.Text.Encoding.Default;                }                HttpContext.Current.Response.Clear();                HttpContext.Current.Response.Buffer = true;                HttpContext.Current.Response.ContentEncoding = encoding;                HttpContext.Current.Response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.xls", string.IsNullOrEmpty(outputFileName) ? DateTime.Now.ToString("yyyyMMddHHmmssfff") : outputFileName));                HttpContext.Current.Response.BinaryWrite(ms.ToArray());                HttpContext.Current.Response.End();

  

  

转载于:https://www.cnblogs.com/51net/p/3874315.html

你可能感兴趣的文章
MQ异步同步搜索引擎ElasticSearch数据踩坑
查看>>
CPUID
查看>>
页码数求0到9共有多少个
查看>>
通过编码设定 ObjectDataSource 参数值6
查看>>
Json格式获取接口返回的值
查看>>
AppCan认为,移动APP开发不是技术活
查看>>
curl
查看>>
协同过滤算法
查看>>
矩阵快速幂 模板
查看>>
[MySQL] AUTO_INCREMENT lock Handing in InnoDB
查看>>
动手动脑
查看>>
创建图像映射
查看>>
Django后端向前端直接传html语言防止转义的方法(2种)
查看>>
快速理解docker
查看>>
从如何优化SQL入手,提高数据仓库的ETL效率
查看>>
k2 4.6.9安装记录-够复杂了
查看>>
Qt 对话框显示控制按钮
查看>>
MYSQL乱码问题。
查看>>
LINQ之路 9:LINQ to SQL 和 Entity Framework(上)
查看>>
c语言链表实现一元多项式的加减乘运算
查看>>