.net 后台生成Excel文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.net 后台生成Excel文件相关的知识,希望对你有一定的参考价值。
.net 后台生成Excel文件
//获取文件路径 string path = ConfigurationManager.AppSettings[EnumAppSettingKey.UploadFilePath.ToString()]; string msg00_sendsq = rblModel.reqNo; //文件名称 string fileNM = DateTime.Now.ToString("yyyyMMddHHmmssffff") + "-" + msg00_sendsq; string fileExt = string.Empty; //创建文件 if (!Directory.Exists(path)) { Directory.CreateDirectory(path); } //生成Excel fileExt = ".xls"; string fullNM = fileNM + fileExt; string filePath = Path.Combine(path, fullNM); StreamWriter sw = new StreamWriter(filePath); //将拼接好的html代码打印成excel文件 sw.Write(sb.ToString()); sw.Close();
以上是关于.net 后台生成Excel文件的主要内容,如果未能解决你的问题,请参考以下文章
thinkphp整合系列之phpexcel生成生成excel文件
从 CSV 生成 Excel 电子表格(ASP.NET C#)[重复]