【xiaomi】ASP.NET 分Sheet匯出EXCEL 2003
EXCEL 2003有65536行資料的限制,而企業資料往往超過65536行,多於65536行的Excel匯出經常形成困擾。其實,只要一個簡單的迴圈加一點點對Sheet操作的技巧,即可實現大於65536行資料分Sheet匯出成Excel的效果。
首先,引用Excel.dll檔案:
/Files/xiaomi7732/Excel.rar
然後,引用名稱空間:using Excel;
最後,新增方法:
首先,引用Excel.dll檔案:
/Files/xiaomi7732/Excel.rar
然後,引用名稱空間:using Excel;
最後,新增方法:
/**////
/// ASP.NET,分Sheet匯出Excel檔案
///
/// 用於匯出的DataView
/// 匯出的資料夾,例如~/ExcelDownload/
/// 檔名,例如test.xls
/// Sheet的名稱,如果匯出多個Sheet,會自動在名稱後面加1、2、3
/// 每個Sheet包含的資料行數,此數值不包括標題行。所以,對於65536行資料,請將此值設定為65535
/// 匯出完成後,是否給資料加上邊框線
public static void WebExportToExcel(DataView dv, string tmpExpDir, string refFileName, string sheetName, int sheetSize, bool setBorderLine)
{
//設定多少行為一個Sheet
int RowsToDivideSheet = sheetSize;
//計算Sheet數
int sheetCount = (dv.Table.Rows.Count - 1) / RowsToDivideSheet + 1;
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 * RowsToDivideSheet;
dvRowEnd = dvRowStart + RowsToDivideSheet-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);
}
//設定SheetName
xSt.Name = sheetName;
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();
//xSt.get_Range(excel.Cells[1, 1], excel.Cells[rowIndex, colIndex-1]).Columns.AutoFit();
if (setBorderLine)
{
allDataWithTitleRange.Borders.LineStyle = 1;
}
}
//excel.Visible = true;
string absFileName = HttpContext.Current.Server.MapPath(System.IO.Path.Combine(tmpExpDir, refFileName));
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();
}
/// ASP.NET,分Sheet匯出Excel檔案
///
/// 用於匯出的DataView
/// 匯出的資料夾,例如~/ExcelDownload/
/// 檔名,例如test.xls
/// Sheet的名稱,如果匯出多個Sheet,會自動在名稱後面加1、2、3
/// 每個Sheet包含的資料行數,此數值不包括標題行。所以,對於65536行資料,請將此值設定為65535
/// 匯出完成後,是否給資料加上邊框線
public static void WebExportToExcel(DataView dv, string tmpExpDir, string refFileName, string sheetName, int sheetSize, bool setBorderLine)
{
//設定多少行為一個Sheet
int RowsToDivideSheet = sheetSize;
//計算Sheet數
int sheetCount = (dv.Table.Rows.Count - 1) / RowsToDivideSheet + 1;
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 * RowsToDivideSheet;
dvRowEnd = dvRowStart + RowsToDivideSheet-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);
}
//設定SheetName
xSt.Name = sheetName;
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();
//xSt.get_Range(excel.Cells[1, 1], excel.Cells[rowIndex, colIndex-1]).Columns.AutoFit();
if (setBorderLine)
{
allDataWithTitleRange.Borders.LineStyle = 1;
}
}
//excel.Visible = true;
string absFileName = HttpContext.Current.Server.MapPath(System.IO.Path.Combine(tmpExpDir, refFileName));
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();
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-374431/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Asp.net 匯出ExcelASP.NETExcel
- ASP.NET Excel匯入和匯出ASP.NETExcel
- asp.net Excel匯出方法ASP.NETExcel
- excel匯出、mysql分頁ExcelMySql
- ASP.NET 開源匯入匯出庫Magicodes.IE 多Sheet匯入教程ASP.NET
- ASP.NET EXCEL資料的匯出和匯入ASP.NETExcel
- 關於EasyExcel的資料匯入和單sheet和多sheet匯出Excel
- asp.net 利用NPOI匯出Excel通用類ASP.NETExcel
- dcat Laravel-Excel(Maatwebsite\Excel)的分塊匯出LaravelExcelWeb
- EasyPoi 多sheet匯出功能實現
- 用Pandas讀寫Excel檔案-輸出單sheet和多sheetExcel
- excel合併sheetExcel
- 匯出excelExcel
- asp.net framework4.0 使用NOPI(一)匯出excelASP.NETFrameworkExcel
- asp.net中利用NPOI匯出資料到excel中ASP.NETExcel
- 多個報表匯出到一個 excel 的多 sheet 頁Excel
- vue excel匯入匯出VueExcel
- js匯出EXCELjs匯出EXCELJSExcel
- phpexcel來做表格匯出(多個工作sheet)PHPExcel
- PHP 匯出 ExcelPHPExcel
- PHP匯出EXCELPHPExcel
- Vue匯出ExcelVueExcel
- Java匯出ExcelJavaExcel
- php 匯出excelPHPExcel
- POI 匯出ExcelExcel
- Excel Sheet Column Number Excel表列序號Excel
- Excel Sheet Column Title Excel表列名稱Excel
- 開源匯入匯出庫Magicodes.IE 多sheet匯入教程
- java匯出Excel定義匯出模板JavaExcel
- Excel模板匯出之動態匯出Excel
- Angular Excel 匯入與匯出AngularExcel
- Asp.net中使用以下程式碼匯出Excel表格(轉)ASP.NETExcel
- 騰訊文件怎樣匯出excel表格 騰訊文件如何匯出excelExcel
- Java 通過Xml匯出Excel檔案,Java Excel 匯出工具類,Java匯出Excel工具類JavaXMLExcel
- js匯出Excel表格JSExcel
- vue匯出Excel表格VueExcel
- Excel優雅匯出Excel
- Excel匯出實列Excel