c# winform datagridview导出到excel(用流的方式)

trilcc 2011-04-01 10:08:26
再次开贴
用流的方式 导出到excel ,导出后的excel无法修改(修改后无法保存),会出现格式兼容的问题,需要另存为才行
点保存的时候提示:可能含有与文本文件(制表符分隔)不兼容的功能。然后就保存不了,需要另存为
StreamWriter sw = new StreamWriter(xlsName, false, System.Text.Encoding.GetEncoding(-0));
string str = "";
for (int k = 0; k < dgv.Columns.Count; k++)
{
str += "\t";
str += dgv.Rows[j].Cells[k].Value.ToString();
}
sw.WriteLine(str);

好像就是制表符str += "\t";的原因,但是这个是用来换单元格的啊


求助 ,如何才能导出后不出现格式的问题
...全文
1261 16 打赏 收藏 转发到动态 举报
写回复
用AI写文章
16 条回复
切换为时间正序
请发表友善的回复…
发表回复
DNN-2017 2012-05-30
  • 打赏
  • 举报
回复
你这样生成的文件不是真正的Excel文件,是后缀名为xls的可用Excel打开的文本文件,所以不能保存成真正的Excel文件,只能另存。
flyerwing 2011-06-30
  • 打赏
  • 举报
回复
直接写成CSV就好了呀.那多麻烦了.
dafei198607 2011-06-30
  • 打赏
  • 举报
回复


public static void DataGridViewToExcel(DataGridView dgv)
{
#region 验证可操作性
//申明保存对话框
SaveFileDialog dlg = new SaveFileDialog();
//默然文件后缀
dlg.DefaultExt = "xls ";
//文件后缀列表
dlg.Filter = "EXCEL文件(*.XLS)|*.xls ";
//默然路径是系统当前路径
dlg.InitialDirectory = Directory.GetCurrentDirectory();
//打开保存对话框
if (dlg.ShowDialog() == DialogResult.Cancel) return;
//返回文件路径
string fileNameString = dlg.FileName;
//验证strFileName是否为空或值无效
if (fileNameString.Trim() == " ")
{ return; }
//定义表格内数据的行数和列数
int rowscount = dgv.Rows.Count;
int colscount = dgv.Columns.Count;
//行数必须大于0
if (rowscount <= 0)
{
MessageBox.Show("没有数据可供保存 ", "提示 ", MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
}

//列数必须大于0
if (colscount <= 0)
{
MessageBox.Show("没有数据可供保存 ", "提示 ", MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
}

//行数不可以大于65536
if (rowscount > 65536)
{
MessageBox.Show("数据记录数太多(最多不能超过65536条),不能保存 ", "提示 ", MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
}

//列数不可以大于100
if (colscount > 100)
{
MessageBox.Show("数据记录列数太多,不能保存 ", "提示 ", MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
}

//验证以fileNameString命名的文件是否存在,如果存在删除它
FileInfo file = new FileInfo(fileNameString);
if (file.Exists)
{
try
{
file.Delete();
}
catch (Exception error)
{
MessageBox.Show(error.Message, "删除失败 ", MessageBoxButtons.OK, MessageBoxIcon.Warning);
return;
}
}
#endregion
Microsoft.Office.Interop.Excel.Application objExcel = null;
Microsoft.Office.Interop.Excel.Workbook objWorkbook = null;
Microsoft.Office.Interop.Excel.Worksheet objsheet = null;
try
{
//申明对象
objExcel = new Microsoft.Office.Interop.Excel.Application();
objWorkbook = objExcel.Workbooks.Add(Missing.Value);
objsheet = (Microsoft.Office.Interop.Excel.Worksheet)objWorkbook.ActiveSheet;
//设置EXCEL不可见
objExcel.Visible = false;

//向Excel中写入表格的表头
int displayColumnsCount = 1;
for (int i = 0; i <= dgv.ColumnCount - 1; i++)
{
if (dgv.Columns[i].Visible == true)
{
objExcel.Cells[1, displayColumnsCount] = dgv.Columns[i].HeaderText.Trim();
displayColumnsCount++;
}
}
//设置进度条
//this.tempProgressBar.Refresh();
//this.tempProgressBar.Visible = true;
//this.tempProgressBar.Minimum = 1;
//this.tempProgressBar.Maximum = dgv.RowCount;
//this.tempProgressBar.Step = 1;
//向Excel中逐行逐列写入表格中的数据
for (int row = 0; row <= dgv.RowCount - 1; row++)
{
//this.tempProgressBar.PerformStep();

displayColumnsCount = 1;
for (int col = 0; col < colscount; col++)
{
if (dgv.Columns[col].Visible == true)
{
try
{
objExcel.Cells[row + 2, displayColumnsCount] = dgv.Rows[row].Cells[col].Value.ToString().Trim();
displayColumnsCount++;
}
catch (Exception)
{

}

}
}
}
//隐藏进度条
//this.tempProgressBar.Visible = false;
//保存文件
objWorkbook.SaveAs(fileNameString, Missing.Value, Missing.Value, Missing.Value, Missing.Value,
Missing.Value, Microsoft.Office.Interop.Excel.XlSaveAsAccessMode.xlExclusive, Missing.Value, Missing.Value, Missing.Value,
Missing.Value, Missing.Value);
}
catch (Exception error)
{
MessageBox.Show(error.Message, "警告 ", MessageBoxButtons.OK, MessageBoxIcon.Warning);
return;
}
finally
{
//关闭Excel应用
if (objWorkbook != null) objWorkbook.Close(Missing.Value, Missing.Value, Missing.Value);
if (objExcel.Workbooks != null) objExcel.Workbooks.Close();
if (objExcel != null) objExcel.Quit();

objsheet = null;
objWorkbook = null;
objExcel = null;
}
MessageBox.Show(fileNameString + "\n\n导出完毕! ", "提示 ", MessageBoxButtons.OK, MessageBoxIcon.Information);
}

flyskym 2011-06-30
  • 打赏
  • 举报
回复
处了编码看和调用的链接库有没有关联,按理说是可以的
VeryShooter 2011-06-30
  • 打赏
  • 举报
回复
用流导出碰到一个日期和电话的格式问题,导出来的电话是科学计数法,日期是一串#,后来把Excel的单元格拖大后就好了。。。
wangting0613 2011-04-06
  • 打赏
  • 举报
回复
public static void OutPutExcel(string html,string filename)
{

HttpContext.Current.Response.Clear();
HttpContext.Current.Response.Buffer = true;
HttpContext.Current.Response.Charset = "GB2312";
//设置了类型为中文防止乱码的出现
HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(filename+".xls"));
HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
//设置输出流为简体中文
HttpContext.Current.Response.ContentType = "application/ms-excel";
HttpContext.Current.Response.Write(html);
HttpContext.Current.Response.End();
}

liangzhl 2011-04-06
  • 打赏
  • 举报
回复
介绍个东西给你,可以不依靠OFFICE,即使电脑上没安装OFFICE也可以的哦。NPOI和MYSLX。你网上搜搜就有了。
小case 2011-04-06
  • 打赏
  • 举报
回复
楼主还没解决的话,换个思路,你可以生成OFFICE 格式的XML,这种格式EXCEL可以直接打开(另存为就可以看到OFFICE 格式的XML选项了),如果不需要表格线字体大小合并单元格这些的话直接生成csv格式更简单,
生成CSV,XML和生成文本文件方法一样,楼主应该会吧
danran251689 2011-04-06
  • 打赏
  • 举报
回复
格式问题,用流写不是标准的excel格式
建议楼主这样写:
  public static void ExcelSave (DataGridView dgv)
{
if(dgv.RowCount<=0)
{
MessageBox.Show("缺少可以导出的数据!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
return;
}
string saveFileName=string.Empty;
SaveFileDialog sfd=new SaveFileDialog();
sfd.DefaultExt="xlsx";
sfd.Filter="Excel文件|*.xlsx";
sfd.FileName="sheet1";
sfd.ShowDialog();
saveFileName=sfd.FileName;
if(saveFileName.IndexOf(".")<0)
{
return;
}
Microsoft.Office.Interop.Excel.Application myExcelApp=new Microsoft.Office.Interop.Excel.Application();
if(myExcelApp==null)
{
MessageBox.Show("无法创建Excel,可能您未安装Excel","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
return;
}
Microsoft.Office.Interop.Excel.Workbooks workbooks=myExcelApp.Workbooks;
Microsoft.Office.Interop.Excel.Workbook workbook=workbooks.Add(Microsoft.Office.Interop.Excel.XlWBATemplate.xlWBATWorksheet);
Microsoft.Office.Interop.Excel.Sheets sheets=workbook.Worksheets;
Microsoft.Office.Interop.Excel.Worksheet worksheet=(Microsoft.Office.Interop.Excel.Worksheet)sheets.get_Item(1);
Microsoft.Office.Interop.Excel.Range range;
object oMis=System.Reflection.Missing.Value;
//显示为文本格式
range=worksheet.get_Range(worksheet.Cells[1,1],worksheet.Cells[dgv.RowCount+1,dgv.ColumnCount]);
range.NumberFormatLocal="@";
//读入数据
for (int i=0; i<dgv.ColumnCount;i++ )
{
worksheet.Cells [1, i+1]=dgv.Columns [i].HeaderText.ToString().Trim();
}
for (int r=0; r<dgv.RowCount;r++ )
{
for (int i=0; i<dgv.ColumnCount;i++ )
{
worksheet.Cells [r+2, i+1]=dgv.Rows [r].Cells [i].Value.ToString().Trim();
}
}
range=worksheet.get_Range( worksheet.Cells [1, 1], worksheet.Cells [dgv.RowCount+1, dgv.ColumnCount] );
range.Columns.AutoFit();
range.RowHeight=18;
range.HorizontalAlignment=Microsoft.Office.Interop.Excel.XlHAlign.xlHAlignLeft;
//保存
if (saveFileName!=string.Empty)
{
try
{
workbook.Saved=true;
workbook.SaveCopyAs( saveFileName );
}
catch (Exception ex)
{
MessageBox.Show( "导出文件时出错,文件可能正被打开!\n"+ex.Message, "提示", MessageBoxButtons.OK, MessageBoxIcon.Information );
}
}
else
{
MessageBox.Show( "文件名不能为空", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information );
}
myExcelApp.Visible=false;
myExcelApp.Quit();
GC.Collect();//垃圾回收
}
}
se7en 2011-04-02
  • 打赏
  • 举报
回复
用DEV ASPX系列控件吧 。直接就可以用
chengangmax 2011-04-02
  • 打赏
  • 举报
回复
为什么非要用流呢 那个感觉不好
追豆豆的人 2011-04-02
  • 打赏
  • 举报
回复
编码的问题吧,换换其他的试一试
trilcc 2011-04-02
  • 打赏
  • 举报
回复
楼上的方法还是不行
小case 2011-04-01
  • 打赏
  • 举报
回复
我用的代码,没问题的

SaveFileDialog saveFileDialog = new SaveFileDialog();
saveFileDialog.Filter = "Execl files (*.xls)|*.xls";
saveFileDialog.FilterIndex = 0;
saveFileDialog.RestoreDirectory = true;
saveFileDialog.CreatePrompt = true;
saveFileDialog.Title = "导出Excel文件到";

DateTime now = DateTime.Now;
saveFileDialog.FileName = now.Year.ToString().PadLeft(2) + now.Month.ToString().PadLeft(2, '0') + now.Day.ToString().PadLeft(2, '0') + "-" + now.Hour.ToString().PadLeft(2, '0') + now.Minute.ToString().PadLeft(2, '0') + now.Second.ToString().PadLeft(2, '0');
saveFileDialog.ShowDialog();

Stream myStream;
myStream = saveFileDialog.OpenFile();
StreamWriter sw = new StreamWriter(myStream, System.Text.Encoding.GetEncoding("gb2312"));

try
{
//写标题 ,就是把 dataGridview1的 Header也转到EXCEL,看你需要
for (int i = 0; i < dataGridview1.ColumnCount; i++)
{
if (i > 0)
{
str += "\t";
}
str += dataGridview1.Columns[i].HeaderText;
}
sw.WriteLine(str);*/
//写内容

for (int j = 0; j < this.dataGridView2.Rows.Count ; j++)
{
string tempStr = "";
for (int k = 0; k < this.dataGridView2.Columns.Count; k++)
{
if (k > 0)
{
tempStr += "\t";
}
tempStr += this.dataGridView2.Rows[j].Cells[k].Value.ToString();
}
sw.WriteLine(tempStr);
}
sw.Close();
myStream.Close();
MessageBox.Show("导出成功");
}
catch (Exception yy)
{
MessageBox.Show(yy.ToString());
}
finally
{
sw.Close();
myStream.Close();
}
trilcc 2011-04-01
  • 打赏
  • 举报
回复
没有嘛?只有广告?

110,526

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 C#
社区管理员
  • C#
  • Web++
  • by_封爱
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

让您成为最强悍的C#开发者

试试用AI创作助手写篇文章吧