Asp.net操作Excel更輕松的實(shí)現(xiàn)代碼

2.建立操作動(dòng)態(tài)鏈接庫(kù)的共通類,方便調(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類提供的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è)類庫(kù)上傳Excel文件。 作者:WILLPAN
相關(guān)文章
.NET Core實(shí)現(xiàn)分表分庫(kù)、讀寫(xiě)分離的通用 Repository功能
這篇文章主要介紹了.NETCore 下支持分表分庫(kù)、讀寫(xiě)分離的通用 Repository,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2019-04-04
asp.net 實(shí)現(xiàn)自定義Hashtable (.net)
asp.net Hashtable自定義實(shí)現(xiàn)代碼,比較多,大家可以看下,測(cè)試。2009-06-06
c#生成圖片縮略圖的類(2種實(shí)現(xiàn)思路)
4個(gè)重載方法,有直接返回Image對(duì)象的,有生成縮略圖,并且保存到指定目錄的,具體祥看下文2013-05-05
客戶端用JavaScript填充DropDownList控件 服務(wù)器端讀不到值
今天遇到一個(gè)奇怪的問(wèn)題,某一頁(yè)面需要使用三級(jí)級(jí)聯(lián)下拉列表框。為提高用戶體驗(yàn),采用jQuery的cascadingDropDown插件調(diào)用后臺(tái)Web Services來(lái)實(shí)現(xiàn)ajax填充。2010-09-09
Visual?Studio?2022常見(jiàn)的報(bào)錯(cuò)以及處理方案圖文詳解
許多用戶在使用Visual Studio的過(guò)程中常會(huì)遇到各種問(wèn)題,下面這篇文章主要給大家介紹了關(guān)于Visual?Studio?2022常見(jiàn)的報(bào)錯(cuò)以及處理方案的相關(guān)資料,文中通過(guò)圖文介紹的非常詳細(xì),需要的朋友可以參考下2023-04-04
asp.net后臺(tái)如何輸出js腳本使用什么方法可以實(shí)現(xiàn)
asp.net后臺(tái)如何輸出js腳本,用page.ClientScript.RegisterStartupScript方式實(shí)現(xiàn),實(shí)現(xiàn)示例如下,感興趣的朋友不要錯(cuò)過(guò)2014-01-01
DataGrid中實(shí)現(xiàn)超鏈接的3種方法
這篇文章介紹了DataGrid中實(shí)現(xiàn)超鏈接的3種方法,有需要的朋友可以參考一下2013-09-09
Entity Framework Core批處理SQL語(yǔ)句
這篇文章介紹了Entity Framework Core批處理SQL語(yǔ)句的方法,文中通過(guò)示例代碼介紹的非常詳細(xì)。對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2022-02-02
Asp.NET MVC中使用SignalR實(shí)現(xiàn)推送功能
這篇文章主要為大家詳細(xì)介紹了Asp.NET MVC 中使用 SignalR 實(shí)現(xiàn)推送功能,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2016-10-10

