1.操作Excel的動(dòng)態(tài)鏈接庫(kù)
2.建立操作動(dòng)態(tài)鏈接庫(kù)的共通類,方便調(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 的摘要說明
/// /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();
//打開模板文件,獲取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 + "]寫數(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;
}
}
}
通過ExcelHelper類提供的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)單寫到這,另外下一節(jié)講介紹如何通過這個(gè)類庫(kù)上傳Excel文件。 作者:WILLPAN
您可能感興趣的文章:- ASP.NET操作EXCEL的總結(jié)篇
- ASP.NET操作Excel備忘錄
- .NET操作Excel實(shí)例分享