主頁(yè) > 知識(shí)庫(kù) > Asp.net操作Excel更輕松的實(shí)現(xiàn)代碼

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

熱門標(biāo)簽:陜西人工外呼系統(tǒng)哪家好 海外地圖標(biāo)注門市標(biāo) 浙江外呼系統(tǒng)怎么安裝 云南外呼電銷機(jī)器人系統(tǒng) 地圖標(biāo)注多個(gè)行程 山西防封卡電銷卡套餐 銅川小型外呼系統(tǒng)運(yùn)營(yíng)商 廈門商鋪地圖標(biāo)注 上海楊浦怎么申請(qǐng)申請(qǐng)400電話
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í)例分享

標(biāo)簽:信陽(yáng) 朔州 許昌 孝感 萊蕪 自貢 西雙版納 常州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Asp.net操作Excel更輕松的實(shí)現(xiàn)代碼》,本文關(guān)鍵詞  Asp.net,操作,Excel,更,輕松,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Asp.net操作Excel更輕松的實(shí)現(xiàn)代碼》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于Asp.net操作Excel更輕松的實(shí)現(xiàn)代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章