来源: 导出Excel文件 解决科学计数法问题 – Avatar – 博客园
无论在做web还是在写winform程序是老是在导出excel数据是遇到科学计数法问题,如果字符太长(如身份证号)在导出的excel 文件中就会出现长字符串的科学计数法表示,反复导数据是就会出现错误 。
我解决的办法是在到处是或者存储将要导出时,每条记录字符串形式处理
在ASP.NET 中 我一般都是将要导出的数据放到gridview网格里,首先对网格邦定数据时 字符串形式处理,然后再用普通的形式导出excel就把问题解决了。
我的代码非常简单:在邦定gridview控件时在rowdatabound事件中队数据格式化
protected void gError_RowDataBound(object sender, GridViewRowEventArgs e)
{
//1) 文本:vnd.ms-excel.numberformat:@
//2) 日期:vnd.ms-excel.numberformat:yyyy/mm/dd
//3) 数字:vnd.ms-excel.numberformat:#,##0.00
//4) 货币:vnd.ms-excel.numberformat:¥#,##0.00
//5) 百分比:vnd.ms-excel.numberformat: #0.00%
for (int i = 0; i < e.Row.Cells.Count; i++)
{
if (e.Row.RowType == DataControlRowType.DataRow)
e.Row.Cells[i ].Attributes.Add(“style”, “vnd.ms-excel.numberformat:@”);
}
}
然后执行到处操作就不会出现问题了
protected void btnOut_Click(object sender, EventArgs e)
{
Response.Clear();
Response.Buffer = true;
Response.Charset = “GB2312”;
Response.AppendHeader(“Content-Disposition”, “attachment;filename=FileName.xls”);
Response.ContentEncoding = System.Text.Encoding.UTF7;
Response.Buffer = true;
Response.Charset = “GB2312”;
Response.AppendHeader(“Content-Disposition”, “attachment;filename=FileName.xls”);