Asp.net操作Excel更輕松的實(shí)現(xiàn)代碼
更新時(shí)間:2011年10月18日 22:08:43 作者:
今天先介紹一個(gè)關(guān)于導(dǎo)出數(shù)據(jù)的例子,以Excel為模板。直接進(jìn)入正題了
1.操作Excel的動(dòng)態(tài)鏈接庫(kù)

2.建立操作動(dòng)態(tài)鏈接庫(kù)的共通類(lèi),方便調(diào)用。(ExcelHelper)
具體如下:
using System;
using System.Data;
using System.Configuration;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.IO;
using System.Reflection;
using System.Diagnostics;
using System.Collections;
/// <summary>
///ExcelHelper 的摘要說(shuō)明
/// </summary>
public class ExcelHelper
{
private string reportModelPath = null;
private string outPutFilePath = null;
private object missing = Missing.Value;
Excel.Application app;
Excel.Workbook workBook;
Excel.Worksheet workSheet;
Excel.Range range;
/// <summary>
/// 獲取或設(shè)置報(bào)表模板路徑
/// </summary>
public string ReportModelPath
{
get { return reportModelPath; }
set { reportModelPath = value; }
}
/// <summary>
/// 獲取或設(shè)置輸出路徑
/// </summary>
public string OutPutFilePath
{
get { return outPutFilePath; }
set { outPutFilePath = value; }
}
public ExcelHelper()
{
//
//TODO: 在此處添加構(gòu)造函數(shù)邏輯
//
}
/// <summary>
/// 帶參ExcelHelper構(gòu)造函數(shù)
/// </summary>
/// <param name="reportModelPath">報(bào)表模板路徑</param>
/// <param name="outPutFilePath">輸出路徑</param>
public ExcelHelper(string reportModelPath, string outPutFilePath)
{
//路徑驗(yàn)證
if (null == reportModelPath || ("").Equals(reportModelPath))
throw new Exception("報(bào)表模板路徑不能為空!");
if (null == outPutFilePath || ("").Equals(outPutFilePath))
throw new Exception("輸出路徑不能為空!");
if (!File.Exists(reportModelPath))
throw new Exception("報(bào)表模板路徑不存在!");
//設(shè)置路徑值
this.ReportModelPath = reportModelPath;
this.OutPutFilePath = outPutFilePath;
//創(chuàng)建一個(gè)應(yīng)用程序?qū)ο?
app = new Excel.ApplicationClass();
//打開(kāi)模板文件,獲取WorkBook對(duì)象
workBook = app.Workbooks.Open(reportModelPath, missing, missing, missing, missing, missing, missing,
missing, missing, missing, missing, missing, missing);
//得到WorkSheet對(duì)象
workSheet = workBook.Sheets.get_Item(1) as Excel.Worksheet;
}
/// <summary>
/// 給單元格設(shè)值
/// </summary>
/// <param name="rowIndex">行索引</param>
/// <param name="colIndex">列索引</param>
/// <param name="content">填充的內(nèi)容</param>
public void SetCells(int rowIndex,int colIndex,object content)
{
if (null != content)
{
content = content.ToString();
}
else
{
content = string.Empty;
}
try
{
workSheet.Cells[rowIndex, colIndex] = content;
}
catch
{
GC();
throw new Exception("向單元格[" + rowIndex + "," + colIndex + "]寫(xiě)數(shù)據(jù)出錯(cuò)!");
}
}
/// <summary>
/// 保存文件
/// </summary>
public void SaveFile()
{
try
{
workBook.SaveAs(outPutFilePath, missing, missing, missing, missing, missing,
Excel.XlSaveAsAccessMode.xlExclusive, missing, missing, missing, missing);
}
catch
{
throw new Exception("保存至文件失敗!");
}
finally
{
Dispose();
}
}
/// <summary>
/// 垃圾回收處理
/// </summary>
protected void GC()
{
if (null != app)
{
int generation = 0;
System.Runtime.InteropServices.Marshal.ReleaseComObject(app);
generation = System.GC.GetGeneration(app);
System.GC.Collect(generation);
app = null;
missing = null;
}
}
/// <summary>
/// 釋放資源
/// </summary>
protected void Dispose()
{
workBook.Close(null, null, null);
app.Workbooks.Close();
app.Quit();
if (null != workSheet)
{
System.Runtime.InteropServices.Marshal.ReleaseComObject(workSheet);
workSheet = null;
}
if (workBook != null)
{
System.Runtime.InteropServices.Marshal.ReleaseComObject(workBook);
workBook = null;
}
if (app != null)
{
int generation = 0;
System.Runtime.InteropServices.Marshal.ReleaseComObject(app);
generation = System.GC.GetGeneration(app);
System.GC.Collect(generation);
app = null;
missing = null;
}
}
}
通過(guò)ExcelHelper類(lèi)提供的SetCells()和SaveFile()方法可以給Excel單元格賦值并保存到臨時(shí)文件夾內(nèi)。僅供參考。
3.調(diào)用
因?yàn)檫@里需要用到導(dǎo)出模板,所以需要先建立模板。具體如下:、
/// <summary>
/// 導(dǎo)出數(shù)據(jù)
/// </summary>
protected void Export_Data()
{
int ii = 0;
//取得報(bào)表模板文件路徑
string reportModelPath = HttpContext.Current.Server.MapPath("ReportModel/導(dǎo)出訂單模板.csv");
//導(dǎo)出報(bào)表文件名
fileName = string.Format("{0}-{1}{2}.csv", "導(dǎo)出訂單明細(xì)", DateTime.Now.ToString("yyyyMMdd"), GetRndNum(3));
//導(dǎo)出文件路徑
string outPutFilePath = HttpContext.Current.Server.MapPath("Temp_Down/" + fileName);
//創(chuàng)建Excel對(duì)象
ExcelHelper excel = new ExcelHelper(reportModelPath, outPutFilePath);
SqlDataReader sdr = Get_Data();
while (sdr.Read())
{
ii++;
excel.SetCells(1 + ii, 1, ii);
excel.SetCells(1 + ii, 2, sdr["C_Name"]);
excel.SetCells(1 + ii, 3, sdr["C_Mtel"]);
excel.SetCells(1 + ii, 4, sdr["C_Tel"]);
excel.SetCells(1 + ii, 5, sdr["C_Province"]);
excel.SetCells(1 + ii, 6, sdr["C_Address"]);
excel.SetCells(1 + ii, 7, sdr["C_Postcode"]);
}
sdr.Close();
excel.SaveFile();
}
關(guān)于導(dǎo)出就簡(jiǎn)單寫(xiě)到這,另外下一節(jié)講介紹如何通過(guò)這個(gè)類(lèi)庫(kù)上傳Excel文件。 作者:WILLPAN

2.建立操作動(dòng)態(tài)鏈接庫(kù)的共通類(lèi),方便調(diào)用。(ExcelHelper)
具體如下:
復(fù)制代碼 代碼如下:
using System;
using System.Data;
using System.Configuration;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.IO;
using System.Reflection;
using System.Diagnostics;
using System.Collections;
/// <summary>
///ExcelHelper 的摘要說(shuō)明
/// </summary>
public class ExcelHelper
{
private string reportModelPath = null;
private string outPutFilePath = null;
private object missing = Missing.Value;
Excel.Application app;
Excel.Workbook workBook;
Excel.Worksheet workSheet;
Excel.Range range;
/// <summary>
/// 獲取或設(shè)置報(bào)表模板路徑
/// </summary>
public string ReportModelPath
{
get { return reportModelPath; }
set { reportModelPath = value; }
}
/// <summary>
/// 獲取或設(shè)置輸出路徑
/// </summary>
public string OutPutFilePath
{
get { return outPutFilePath; }
set { outPutFilePath = value; }
}
public ExcelHelper()
{
//
//TODO: 在此處添加構(gòu)造函數(shù)邏輯
//
}
/// <summary>
/// 帶參ExcelHelper構(gòu)造函數(shù)
/// </summary>
/// <param name="reportModelPath">報(bào)表模板路徑</param>
/// <param name="outPutFilePath">輸出路徑</param>
public ExcelHelper(string reportModelPath, string outPutFilePath)
{
//路徑驗(yàn)證
if (null == reportModelPath || ("").Equals(reportModelPath))
throw new Exception("報(bào)表模板路徑不能為空!");
if (null == outPutFilePath || ("").Equals(outPutFilePath))
throw new Exception("輸出路徑不能為空!");
if (!File.Exists(reportModelPath))
throw new Exception("報(bào)表模板路徑不存在!");
//設(shè)置路徑值
this.ReportModelPath = reportModelPath;
this.OutPutFilePath = outPutFilePath;
//創(chuàng)建一個(gè)應(yīng)用程序?qū)ο?
app = new Excel.ApplicationClass();
//打開(kāi)模板文件,獲取WorkBook對(duì)象
workBook = app.Workbooks.Open(reportModelPath, missing, missing, missing, missing, missing, missing,
missing, missing, missing, missing, missing, missing);
//得到WorkSheet對(duì)象
workSheet = workBook.Sheets.get_Item(1) as Excel.Worksheet;
}
/// <summary>
/// 給單元格設(shè)值
/// </summary>
/// <param name="rowIndex">行索引</param>
/// <param name="colIndex">列索引</param>
/// <param name="content">填充的內(nèi)容</param>
public void SetCells(int rowIndex,int colIndex,object content)
{
if (null != content)
{
content = content.ToString();
}
else
{
content = string.Empty;
}
try
{
workSheet.Cells[rowIndex, colIndex] = content;
}
catch
{
GC();
throw new Exception("向單元格[" + rowIndex + "," + colIndex + "]寫(xiě)數(shù)據(jù)出錯(cuò)!");
}
}
/// <summary>
/// 保存文件
/// </summary>
public void SaveFile()
{
try
{
workBook.SaveAs(outPutFilePath, missing, missing, missing, missing, missing,
Excel.XlSaveAsAccessMode.xlExclusive, missing, missing, missing, missing);
}
catch
{
throw new Exception("保存至文件失敗!");
}
finally
{
Dispose();
}
}
/// <summary>
/// 垃圾回收處理
/// </summary>
protected void GC()
{
if (null != app)
{
int generation = 0;
System.Runtime.InteropServices.Marshal.ReleaseComObject(app);
generation = System.GC.GetGeneration(app);
System.GC.Collect(generation);
app = null;
missing = null;
}
}
/// <summary>
/// 釋放資源
/// </summary>
protected void Dispose()
{
workBook.Close(null, null, null);
app.Workbooks.Close();
app.Quit();
if (null != workSheet)
{
System.Runtime.InteropServices.Marshal.ReleaseComObject(workSheet);
workSheet = null;
}
if (workBook != null)
{
System.Runtime.InteropServices.Marshal.ReleaseComObject(workBook);
workBook = null;
}
if (app != null)
{
int generation = 0;
System.Runtime.InteropServices.Marshal.ReleaseComObject(app);
generation = System.GC.GetGeneration(app);
System.GC.Collect(generation);
app = null;
missing = null;
}
}
}
通過(guò)ExcelHelper類(lèi)提供的SetCells()和SaveFile()方法可以給Excel單元格賦值并保存到臨時(shí)文件夾內(nèi)。僅供參考。
3.調(diào)用
因?yàn)檫@里需要用到導(dǎo)出模板,所以需要先建立模板。具體如下:、
復(fù)制代碼 代碼如下:
/// <summary>
/// 導(dǎo)出數(shù)據(jù)
/// </summary>
protected void Export_Data()
{
int ii = 0;
//取得報(bào)表模板文件路徑
string reportModelPath = HttpContext.Current.Server.MapPath("ReportModel/導(dǎo)出訂單模板.csv");
//導(dǎo)出報(bào)表文件名
fileName = string.Format("{0}-{1}{2}.csv", "導(dǎo)出訂單明細(xì)", DateTime.Now.ToString("yyyyMMdd"), GetRndNum(3));
//導(dǎo)出文件路徑
string outPutFilePath = HttpContext.Current.Server.MapPath("Temp_Down/" + fileName);
//創(chuàng)建Excel對(duì)象
ExcelHelper excel = new ExcelHelper(reportModelPath, outPutFilePath);
SqlDataReader sdr = Get_Data();
while (sdr.Read())
{
ii++;
excel.SetCells(1 + ii, 1, ii);
excel.SetCells(1 + ii, 2, sdr["C_Name"]);
excel.SetCells(1 + ii, 3, sdr["C_Mtel"]);
excel.SetCells(1 + ii, 4, sdr["C_Tel"]);
excel.SetCells(1 + ii, 5, sdr["C_Province"]);
excel.SetCells(1 + ii, 6, sdr["C_Address"]);
excel.SetCells(1 + ii, 7, sdr["C_Postcode"]);
}
sdr.Close();
excel.SaveFile();
}
關(guān)于導(dǎo)出就簡(jiǎn)單寫(xiě)到這,另外下一節(jié)講介紹如何通過(guò)這個(gè)類(lèi)庫(kù)上傳Excel文件。 作者:WILLPAN
相關(guān)文章
ASP.NET漢字轉(zhuǎn)拼音 - 輸入漢字獲取其拼音的具體實(shí)現(xiàn)
這篇文章主要介紹了ASP.NET漢字轉(zhuǎn)拼音 - 輸入漢字獲取其拼音的具體實(shí)現(xiàn),需要的朋友可以參考下2014-02-02
基于SignalR的消息推送與二維碼掃描登錄實(shí)現(xiàn)代碼
這篇文章主要介紹了基于SignalR的消息推送與二維碼掃描登錄實(shí)現(xiàn)代碼,需要的朋友可以參考下2017-02-02
ASP.NET?MVC為用戶(hù)創(chuàng)建專(zhuān)屬文件夾
這篇文章介紹了ASP.NET?MVC為用戶(hù)創(chuàng)建專(zhuān)屬文件夾的方法,文中通過(guò)示例代碼介紹的非常詳細(xì)。對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2022-08-08
ASP.NET對(duì)HTML頁(yè)面元素進(jìn)行權(quán)限控制(三)
界面每個(gè)元素的權(quán)限也是需要控制的。比如一個(gè)查詢(xún)用戶(hù)的界面里面有查詢(xún)用戶(hù)按鈕,添加用戶(hù)按鈕,刪除用戶(hù)按鈕,不同的角色我們得分配不同的權(quán)限2013-12-12
asp.net訪問(wèn)網(wǎng)絡(luò)路徑方法(模擬用戶(hù)登錄)
這篇文章主要介紹了asp.net訪問(wèn)網(wǎng)絡(luò)路徑方法,其實(shí)就是模擬用戶(hù)登錄,需要的朋友可以參考下2014-08-08
asp.net GridView和DataList實(shí)現(xiàn)鼠標(biāo)移到行行變色
在設(shè)計(jì)頁(yè)面添加了DataList控件后,我在使用DataList綁定數(shù)據(jù)時(shí)是通過(guò)單元格來(lái)綁定的,因此鼠標(biāo)效果就在源代碼頁(yè)面去實(shí)現(xiàn)2009-02-02

