C#winform中如何把表导出到EXCEL

C#winform中如何把表导出到EXCEL使用的是datagridview控件,把其中的表导入到一个新的EXCEL文件中。是不是把datagridview中表遍历一遍,... C#winform中如何把表导出到EXCEL 使用的是datagridview控件,把其中的表导入到一个新的EXCEL文件中。是不是把datagridview中表遍历一遍,一个个写到EXCEL文件中?具体怎么写高手指点下,我用的ACCESS数据库。最好给个例子看看~ 展开
 我来答
liulaijin
推荐于2016-11-29 · 超过22用户采纳过TA的回答
知道答主
回答量:58
采纳率:100%
帮助的人:53.4万
展开全部
DataSet数据集内数据转化为Excel文件
/// <summary>
/// ExportFiles 的摘要说明。
/// 作用:把DataSet数据集内数据转化为Excel文件
/// 描述:导出Excel文件
/// 备注:请引用Office相应COM组件,导出Excel对象的一个方法要调用其中的一些方法和属性。
/// </summary>
public class ExportFiles
{
private string filePath = "";
public ExportFiles(string excel_path)
{
//
// TODO: 在此处添加构造函数逻辑
//
filePath = excel_path;
}
/// <summary>
/// 将指定的Dataset导出到Excel文件
/// </summary>
/// <param name="dt"></param>
/// <returns></returns>
public bool ExportToExcel(System.Data.DataSet ds, string ReportName)
{
if (ds.Tables[0].Rows.Count == 0)
{
MessageBox.Show("数据集为空");
}
Microsoft.Office.Interop.Excel._Application xlapp = new ApplicationClass();
Workbook xlbook = xlapp.Workbooks.Add(true);
Worksheet xlsheet = (Worksheet)xlbook.Worksheets[1];
Range range = xlsheet.get_Range(xlapp.Cells[1, 1], xlapp.Cells[1, ds.Tables[0].Columns.Count]);
range.MergeCells = true;
xlapp.ActiveCell.FormulaR1C1 = ReportName;
xlapp.ActiveCell.Font.Size = 20;
xlapp.ActiveCell.Font.Bold = true;
xlapp.ActiveCell.HorizontalAlignment = Microsoft.Office.Interop.Excel.Constants.xlCenter;
int colIndex = 0;
int RowIndex = 2;
//开始写入每列的标题
foreach (DataColumn dc in ds.Tables[0].Columns)
{
colIndex++;
xlsheet.Cells[RowIndex, colIndex] = dc.Caption;
}
//开始写入内容
int RowCount = ds.Tables[0].Rows.Count;//行数
for (int i = 0; i < RowCount; i++)
{
RowIndex++;
int ColCount = ds.Tables[0].Columns.Count;//列数
for (colIndex = 1; colIndex <= ColCount; colIndex++)
{
xlsheet.Cells[RowIndex, colIndex] = ds.Tables[0].Rows[i][colIndex - 1];//dg[i, colIndex - 1];
xlsheet.Cells.ColumnWidth = ds.Tables[0].Rows[i][colIndex - 1].ToString().Length;
}
}

xlbook.Saved = true;
xlbook.SaveCopyAs(filePath);
xlapp.Quit();
GC.Collect();
return true;
}

public bool ExportToExcelOF(System.Data.DataSet ds, string ReportName)
{
if (ds.Tables[0].Rows.Count == 0)
{
MessageBox.Show("数据集为空");
}
string FileName = filePath;

//System.Data.DataTable dt = new System.Data.DataTable();
FileStream objFileStream;
StreamWriter objStreamWriter;
string strLine = "";
objFileStream = new FileStream(FileName, FileMode.OpenOrCreate, FileAccess.Write);
objStreamWriter = new StreamWriter(objFileStream, System.Text.Encoding.Unicode);

strLine = ReportName;
objStreamWriter.WriteLine(strLine);
strLine = "";

for (int i = 0; i < ds.Tables[0].Columns.Count; i++)
{
strLine = strLine + ds.Tables[0].Columns[i].ColumnName.ToString() + " " + Convert.ToChar(9);
}
objStreamWriter.WriteLine(strLine);
strLine = "";

for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
{
strLine = strLine + (i + 1) + Convert.ToChar(9);
for (int j = 1; j < ds.Tables[0].Columns.Count; j++)
{
strLine = strLine + ds.Tables[0].Rows[i][j].ToString() + Convert.ToChar(9);
}
objStreamWriter.WriteLine(strLine);
strLine = "";
}
objStreamWriter.Close();
objFileStream.Close();

//Microsoft.Office.Interop.Excel._Application xlapp = new ApplicationClass();
//Workbook xlbook = xlapp.Workbooks.Add(true);
//Worksheet xlsheet = (Worksheet)xlbook.Worksheets[1];
//Range range = xlsheet.get_Range(xlapp.Cells[1, 1], xlapp.Cells[1, ds.Tables[0].Columns.Count]);
//range.EntireColumn.AutoFit();
//xlapp.Quit();
return true;
}
}
TableDI
2024-07-18 广告
在上海悉息信息科技有限公司,我们深知Excel在数据处理中的重要作用。在Excel中引用不同工作表(sheet)的数据是常见的操作,这有助于整合和分析跨多个工作表的信息。通过在工作表名称前加上感叹号“!”,您可以轻松地引用其他工作表中的数据... 点击进入详情页
本回答由TableDI提供
baisedebing
2011-10-28 · TA获得超过202个赞
知道小有建树答主
回答量:225
采纳率:100%
帮助的人:115万
展开全部
http://apps.hi.baidu.com/share/detail/31861190

网上能搜到许多DataTable导出EXCEL的文章,但实施起来,可行者不多也!本人认真调试了一番,问题得以解决,现整理与大家分享:
一、实现目标:

由一个内存表DataTable,导出字段名及其内容的完整EXCEL表格

二、实施步骤:

1、添加引用:

这是非常生要的一步,很多人调试不成都是因为这步没做好:

需要在你的解决方案中添加COM引用,选择 "Microsoft EXCEL ...."(根据版本有所不同),这是为下面的 EXCEL相关命名空间的引用做铺垫的;

我用的EXCEL 2007,添加COM引用后如下图:

增加了两个引用文件!

2、命名空间引用部分:

增加下面的引用内容:

using Microsoft.Office.Interop.Excel;

3、定义函数:

public static void DataTabletoExcel(System.Data.DataTable tmpDataTable, string strFileName)

{

if (tmpDataTable == null)

return;

int rowNum = tmpDataTable.Rows.Count;

int columnNum = tmpDataTable.Columns.Count;

int rowIndex = 1;

int columnIndex = 0;

Application xlApp = new ApplicationClass();

xlApp.DefaultFilePath = "";

xlApp.DisplayAlerts = true;

xlApp.SheetsInNewWorkbook = 1;

Workbook xlBook = xlApp.Workbooks.Add(true);

//将DataTable的列名导入Excel表第一行

foreach (DataColumn dc in tmpDataTable.Columns)

{

columnIndex++;

xlApp.Cells[rowIndex, columnIndex] = dc.ColumnName;

}

//将DataTable中的数据导入Excel中

for (int i = 0; i < rowNum; i++)

{

rowIndex++;

columnIndex = 0;

for (int j = 0; j < columnNum; j++)

{

columnIndex++;

xlApp.Cells[rowIndex, columnIndex] = tmpDataTable.Rows[i][j].ToString();

}

}

//xlBook.SaveCopyAs(HttpUtility.UrlDecode(strFileName, System.Text.Encoding.UTF8));

xlBook.SaveCopyAs(strFileName);

}

}

4、 使用实例:

System.Data.DataTable dt = ……; //准备好你的DataTable

DataTabletoExcel(dt, "C:\\\\中国.XLS"); //调用自定义的函数,当然输出文件你可以随便写

三、测试环境:

VS2008,EXCEL 2007
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
carrieye
2011-10-28
知道答主
回答量:41
采纳率:0%
帮助的人:22.1万
展开全部
DataTable写入DB的方式导入
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式