求将dataset数据集导出到excel文件的方法(vs2005 c#)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求将dataset数据集导出到excel文件的方法(vs2005 c#)相关的知识,希望对你有一定的参考价值。

求web方式下将dataset数据集导出到excel文件的方法
我用的是vs2005c#和office2003,请各位大侠指点!
还有就是vs2005用web方式能做保存文件的提示对话框么?
谢谢大家!!好的答案还会加分!!

沾过去直接就可以用
//参数dt是数据表,fileName是生成Excel的名字
private void CreateExcel(DataTable dt, string fileName)


HttpResponse resp;
resp = Page.Response;
resp.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
resp.AppendHeader("Content-Disposition", "attachment;filename=" + fileName);
string colHeaders = "", ls_item = "";

////定义表对象与行对象,同时用DataSet对其值进行初始化
//DataTable dt = ds.Tables[0];
DataRow[] myRow = dt.Select();//可以类似dt.Select("id>10")之形式达到数据筛选目的
int i = 0;
int cl = dt.Columns.Count;

//取得数据表各列标题,各标题之间以t分割,最后一个列标题后加回车符
for (i = 0; i < cl; i++)

if (i == (cl - 1))//最后一列,加n

colHeaders += dt.Columns[i].Caption.ToString() + "\n";

else

colHeaders += dt.Columns[i].Caption.ToString() + "\t";



resp.Write(colHeaders);
//向HTTP输出流中写入取得的数据信息

//逐行处理数据
foreach (DataRow row in myRow)

//当前行数据写入HTTP输出流,并且置空ls_item以便下行数据
for (i = 0; i < cl; i++)

if (i == (cl - 1))//最后一列,加n

ls_item += row[i].ToString() + "\n";

else

ls_item += row[i].ToString() + "\t";



resp.Write(ls_item);
ls_item = "";


resp.End();


//生成xml
protected void Button3_Click(object sender, EventArgs e)

DataSet ds = new DataSet();
SqlConnection conn = new SqlConnection("database=库;server=.;uid=sa;pwd=;");
string sql1 = "select * from 表";
SqlDataAdapter da = new SqlDataAdapter(sql1, conn);
da.Fill(ds);
DataTable dt = ds.Tables[0].Copy();
CreateExcel(dt, "table");
参考技术A 由于EXCEL 2003有65536行数据的限制,故在超过这个限制时须分成多个Sheet来显示,本人通过网上部分资料加上自己的应用心得总结出以下方法,希望能为广大工友带来方便.

首先,如果您使用的是VS2005,则须引入Excel.dll文件;如果您使用的是VS2003,则引入Interop.Excel.dll文件,一般工程会自动引入.

然后,引用命名空间:using Excel;

最后添加方法:

/// <summary>
/// 将传入的DataSet数据导出至Excel文件
/// </summary>
/// <param name="ctl">DataGrid</param>
public static void DataSet2Excel(DataSet ds)

int maxRow=ds.Tables[0].Rows.Count;
string fileName=DateTime.Now.ToString("yyyyMMddhhmmss") + ".xls";//设置导出文件的名称

DataView dv=new DataView(ds.Tables[0]);//将DataSet转换成DataView
string fileURL=string.Empty;
//调用方法将文件写入服务器,并获取全部路径
fileURL=DataView2ExcelBySheet(dv,fileName);
//获取路径后从服务器下载文件至本地
HttpContext curContext=System.Web.HttpContext.Current;
curContext.Response.ContentType="application/vnd.ms-excel";
curContext.Response.ContentEncoding=System.Text.Encoding.Default;
curContext.Response.AppendHeader("Content-Disposition", ("attachment;filename=" + fileName));
curContext.Response.Charset = "";

curContext.Response.WriteFile(fileURL);
curContext.Response.Flush();
curContext.Response.End();


/// <summary>
/// 分Sheet导出Excel文件
/// </summary>
/// <param name="dv">需导出的DataView</param>
/// <returns>导出文件的路径</returns>
private static string DataView2ExcelBySheet(DataView dv,string fileName)

int sheetRows=65535;//设置Sheet的行数,此为最大上限,本来是65536,因表头要占去一行
int sheetCount = (dv.Table.Rows.Count - 1) / sheetRows + 1;//计算Sheet数

GC.Collect();//垃圾回收

Application excel;
_Workbook xBk;
_Worksheet xSt=null;
excel = new ApplicationClass();
xBk = excel.Workbooks.Add(true);

//定义循环中要使用的变量
int dvRowStart;
int dvRowEnd;
int rowIndex = 0;
int colIndex = 0;
//对全部Sheet进行操作
for (int sheetIndex = 0; sheetIndex < sheetCount; sheetIndex++)

//初始化Sheet中的变量
rowIndex = 1;
colIndex = 1;
//计算起始行
dvRowStart = sheetIndex * sheetRows;
dvRowEnd = dvRowStart + sheetRows-1;
if (dvRowEnd > dv.Table.Rows.Count-1)

dvRowEnd = dv.Table.Rows.Count - 1;

//创建一个Sheet
if (null == xSt)

xSt = (_Worksheet)xBk.Worksheets.Add(Type.Missing, Type.Missing, 1, Type.Missing);

else

xSt = (_Worksheet)xBk.Worksheets.Add(Type.Missing, xSt, 1, Type.Missing);

//设置Sheet的名称
xSt.Name = "Expdata";
if (sheetCount > 1)

xSt.Name += ((int)(sheetIndex + 1)).ToString();

//取得标题
foreach (DataColumn col in dv.Table.Columns)

//设置标题格式
xSt.get_Range(excel.Cells[rowIndex, colIndex], excel.Cells[rowIndex, colIndex]).HorizontalAlignment = XlVAlign.xlVAlignCenter; //设置标题居中对齐
xSt.get_Range(excel.Cells[rowIndex, colIndex], excel.Cells[rowIndex, colIndex]).Font.Bold = true;//设置标题为粗体
//填值,并进行下一列
excel.Cells[rowIndex, colIndex++] = col.ColumnName;

//取得表格中数量
int drvIndex;
for(drvIndex=dvRowStart;drvIndex<=dvRowEnd;drvIndex++)

DataRowView row=dv[drvIndex];
//新起一行,当前单元格移至行首
rowIndex++;
colIndex = 1;
foreach (DataColumn col in dv.Table.Columns)

if (col.DataType == System.Type.GetType("System.DateTime"))

excel.Cells[rowIndex, colIndex] = (Convert.ToDateTime(row[col.ColumnName].ToString())).ToString("yyyy-MM-dd");

else if (col.DataType == System.Type.GetType("System.String"))

excel.Cells[rowIndex, colIndex] = "'" + row[col.ColumnName].ToString();

else

excel.Cells[rowIndex, colIndex] = row[col.ColumnName].ToString();

colIndex++;


//使用最佳宽度
Range allDataWithTitleRange = xSt.get_Range(excel.Cells[1, 1], excel.Cells[rowIndex, colIndex-1]);
allDataWithTitleRange.Select();
allDataWithTitleRange.Columns.AutoFit();
allDataWithTitleRange.Borders.LineStyle = 1;//将导出Excel加上边框

//设置导出文件在服务器上的文件夹
string exportDir="~/ExcelFile/";//注意:该文件夹您须事先在服务器上建好才行
//设置文件在服务器上的路径
string absFileName = HttpContext.Current.Server.MapPath(System.IO.Path.Combine(exportDir,fileName));
xBk.SaveCopyAs(absFileName);
xBk.Close(false, null, null);
excel.Quit();

System.Runtime.InteropServices.Marshal.ReleaseComObject(xBk);
System.Runtime.InteropServices.Marshal.ReleaseComObject(excel);
System.Runtime.InteropServices.Marshal.ReleaseComObject(xSt);

xBk = null;
excel = null;
xSt = null;
GC.Collect();
//返回写入服务器Excel文件的路径
return absFileName;


说明:如果您需要将导出文件保存到服务器,则只需采用DataView2ExcelBySheet方法即可,且不需返回路径,直接在服务器的该路径下即可找到文件.

是在网上找的一个例子,你看下
参考技术B public static string ConvertExcelUTF8(string strhtml,string userip)

string filepath,filename;
FileStream f=null;
filepath= AppDomain.CurrentDomain.SetupInformation.ApplicationBase+"\\excelfile\\";
filename = userip+ "temp.xls";
try

if (!Directory.Exists(filepath))

Directory.CreateDirectory(filepath);

if (File.Exists(filepath+filename))
File.Delete(filepath+filename);
f = File.Create(filepath+filename);
//byte[] bt = Encoding.UTF7.GetBytes(strhtml);
byte[] bt = Encoding.UTF8.GetBytes(strhtml); // Amend:2008-1-31;
f.Write(bt,0,bt.Length);

catch(Exception err)

EventLogClass.WriteEntry("shanghai3h", "BusinessRule", "ConvertData.ConvertExcel; 写excel文件异常,异常信息为:"+err.Message, 0);
//Modified:zhangming 2006/3/27
//转异常信息页面
ErrorPageRedirect.RedirectError();

finally

if (f != null)
f.Close();

return filename;

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

C#winform中如何把表导出到EXCEL 使用的是datagridview控件,把其中的表导入到一个新的EXCEL文件中。是不是把datagridview中表遍历一遍,一个个写到EXCEL文件中?具体怎么写高手指点下,我用的ACCESS数据库。最好给个例子看看~

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;

参考技术A 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
参考技术B DataTable写入DB的方式导入

以上是关于求将dataset数据集导出到excel文件的方法(vs2005 c#)的主要内容,如果未能解决你的问题,请参考以下文章

nativeexcel数据集导出excel

请教java导出多张图片到Excel问题!

写了一个把dataset导出到Excel的winform程序,点击导出就报错,下面是错误信息,谁帮我看看怎么回事?

请问如何把dataset里面的表导出到excel中?

如何编辑数据集?

AnyLogic 将数据集导出到 excel 文件中