[NET][C#]操作Excel,套用模板并对数据进行分页

2024-03-08 15:18

本文主要是介绍[NET][C#]操作Excel,套用模板并对数据进行分页,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

[NET][C#]操作Excel,套用模板并对数据进行分页
using System;
using System.IO;
using System.Data;
using System.Reflection;
using System.Diagnostics;
using cfg = System.Configuration;
using Excel;
namespace ExcelHelperTest
{
/**/ ///   <summary> 
/// 功能说明:套用模板输出Excel,并对数据进行分页
/// 作    者:Lingyun_k
/// 创建日期:2005-7-12
///   </summary> 
public   class ExcelHelper
{
protected   string templetFile =   null ;
protected   string outputFile =   null ;
protected   object missing = Missing.Value;
/**/ ///   <summary> 
/// 构造函数,需指定模板文件和输出文件完整路径
///   </summary> 
///   <param name="templetFilePath"> Excel模板文件路径 </param> 
///   <param name="outputFilePath"> 输出Excel文件路径 </param> 
public ExcelHelper( string templetFilePath, string outputFilePath)
{
if (templetFilePath ==   null )
throw   new Exception( " Excel模板文件路径不能为空! " );
if (outputFilePath ==   null )
throw   new Exception( " 输出Excel文件路径不能为空! " );
if ( ! File.Exists(templetFilePath))
throw   new Exception( " 指定路径的Excel模板文件不存在! " );
this .templetFile = templetFilePath;
this .outputFile = outputFilePath;
}
/**/ ///   <summary> 
/// 将DataTable数据写入Excel文件(套用模板并分页)
///   </summary> 
///   <param name="dt"> DataTable </param> 
///   <param name="rows"> 每个WorkSheet写入多少行数据 </param> 
///   <param name="top"> 行索引 </param> 
///   <param name="left"> 列索引 </param> 
///   <param name="sheetPrefixName"> WorkSheet前缀名,比如:前缀名为“Sheet”,那么WorkSheet名称依次为“Sheet-1,Sheet-2” </param> 
public   void DataTableToExcel(DataTable dt, int rows, int top, int left, string sheetPrefixName)
{
int rowCount = dt.Rows.Count;         // 源DataTable行数 
int colCount = dt.Columns.Count;     // 源DataTable列数 
int sheetCount =   this .GetSheetCount(rowCount,rows);     // WorkSheet个数 
DateTime beforeTime;    
DateTime afterTime;
if (sheetPrefixName ==   null   || sheetPrefixName.Trim() ==   "" )
sheetPrefixName =   " Sheet " ;
// 创建一个Application对象并使其可见 
beforeTime = DateTime.Now;
Excel.Application app =   new Excel.ApplicationClass();
app.Visible =   true ;
afterTime = DateTime.Now;
// 打开模板文件,得到WorkBook对象 
Excel.Workbook workBook = app.Workbooks.Open(templetFile,missing,missing,missing,missing,missing,
missing,missing,missing,missing,missing,missing,missing);
// 得到WorkSheet对象 
Excel.Worksheet workSheet = (Excel.Worksheet)workBook.Sheets.get_Item( 1 );
// 复制sheetCount-1个WorkSheet对象 
for ( int i = 1 ;i < sheetCount;i ++ )
{
((Excel.Worksheet)workBook.Worksheets.get_Item(i)).Copy(missing,workBook.Worksheets[i]);
}
将源DataTable数据写入Excel #region 将源DataTable数据写入Excel 
for ( int i = 1 ;i <= sheetCount;i ++ )
{
int startRow = (i -   1 ) * rows;         // 记录起始行索引 
int endRow = i * rows;             // 记录结束行索引
// 若是最后一个WorkSheet,那么记录结束行索引为源DataTable行数 
if (i == sheetCount)
endRow = rowCount;
// 获取要写入数据的WorkSheet对象,并重命名 
Excel.Worksheet sheet = (Excel.Worksheet)workBook.Worksheets.get_Item(i);
sheet.Name = sheetPrefixName +   " - "   + i.ToString();
// 将dt中的数据写入WorkSheet 
for ( int j = 0 ;j < endRow - startRow;j ++ )
{
for ( int k = 0 ;k < colCount;k ++ )
{
sheet.Cells[top + j,left + k] = dt.Rows[startRow + j][k].ToString();
} 
}
// 写文本框数据 
Excel.TextBox txtAuthor = (Excel.TextBox)sheet.TextBoxes( " txtAuthor " );
Excel.TextBox txtDate = (Excel.TextBox)sheet.TextBoxes( " txtDate " );
Excel.TextBox txtVersion = (Excel.TextBox)sheet.TextBoxes( " txtVersion " );
txtAuthor.Text =   " KLY.NET的Blog " ;
txtDate.Text = DateTime.Now.ToShortDateString();
txtVersion.Text =   " 1.0.0.0 " ;
} 
#endregion
// 输出Excel文件并退出 
try 
{
workBook.SaveAs(outputFile,missing,missing,missing,missing,missing,Excel.XlSaveAsAccessMode.xlExclusive,missing,missing,missing,missing);
workBook.Close( null , null , null );
app.Workbooks.Close();
app.Application.Quit();
app.Quit();
System.Runtime.InteropServices.Marshal.ReleaseComObject(workSheet);
System.Runtime.InteropServices.Marshal.ReleaseComObject(workBook);
System.Runtime.InteropServices.Marshal.ReleaseComObject(app);
workSheet = null ;
workBook = null ;
app = null ;
GC.Collect();
} 
catch (Exception e)
{
throw e;
} 
finally 
{
Process[] myProcesses;
DateTime startTime;
myProcesses = Process.GetProcessesByName( " Excel " );
// 得不到Excel进程ID,暂时只能判断进程启动时间 
foreach (Process myProcess in myProcesses)
{
startTime = myProcess.StartTime;
if (startTime > beforeTime && startTime < afterTime)
{
myProcess.Kill();
} 
} 
} 
}
/**/ ///   <summary> 
/// 获取WorkSheet数量
///   </summary> 
///   <param name="rowCount"> 记录总行数 </param> 
///   <param name="rows"> 每WorkSheet行数 </param> 
private   int GetSheetCount( int rowCount, int rows)
{
int n = rowCount % rows;         // 余数
if (n ==   0 )
return rowCount / rows;
else 
return Convert.ToInt32(rowCount / rows) +   1 ;
}
/**/ ///   <summary> 
/// 将二维数组数据写入Excel文件(套用模板并分页)
///   </summary> 
///   <param name="arr"> 二维数组 </param> 
///   <param name="rows"> 每个WorkSheet写入多少行数据 </param> 
///   <param name="top"> 行索引 </param> 
///   <param name="left"> 列索引 </param> 
///   <param name="sheetPrefixName"> WorkSheet前缀名,比如:前缀名为“Sheet”,那么WorkSheet名称依次为“Sheet-1,Sheet-2” </param> 
public   void ArrayToExcel( string [,] arr, int rows, int top, int left, string sheetPrefixName)
{
int rowCount = arr.GetLength( 0 );         // 二维数组行数(一维长度) 
int colCount = arr.GetLength( 1 );     // 二维数据列数(二维长度) 
int sheetCount =   this .GetSheetCount(rowCount,rows);     // WorkSheet个数 
DateTime beforeTime;    
DateTime afterTime;
if (sheetPrefixName ==   null   || sheetPrefixName.Trim() ==   "" )
sheetPrefixName =   " Sheet " ;
// 创建一个Application对象并使其可见 
beforeTime = DateTime.Now;
Excel.Application app =   new Excel.ApplicationClass();
app.Visible =   true ;
afterTime = DateTime.Now;
// 打开模板文件,得到WorkBook对象 
Excel.Workbook workBook = app.Workbooks.Open(templetFile,missing,missing,missing,missing,missing,
missing,missing,missing,missing,missing,missing,missing);
// 得到WorkSheet对象 
Excel.Worksheet workSheet = (Excel.Worksheet)workBook.Sheets.get_Item( 1 );
// 复制sheetCount-1个WorkSheet对象 
for ( int i = 1 ;i < sheetCount;i ++ )
{
((Excel.Worksheet)workBook.Worksheets.get_Item(i)).Copy(missing,workBook.Worksheets[i]);
}
将二维数组数据写入Excel #region 将二维数组数据写入Excel 
for ( int i = 1 ;i <= sheetCount;i ++ )
{
int startRow = (i -   1 ) * rows;         // 记录起始行索引 
int endRow = i * rows;             // 记录结束行索引
// 若是最后一个WorkSheet,那么记录结束行索引为源DataTable行数 
if (i == sheetCount)
endRow = rowCount;
// 获取要写入数据的WorkSheet对象,并重命名 
Excel.Worksheet sheet = (Excel.Worksheet)workBook.Worksheets.get_Item(i);
sheet.Name = sheetPrefixName +   " - "   + i.ToString();
// 将二维数组中的数据写入WorkSheet 
for ( int j = 0 ;j < endRow - startRow;j ++ )
{
for ( int k = 0 ;k < colCount;k ++ )
{
sheet.Cells[top + j,left + k] = arr[startRow + j,k];
} 
}
Excel.TextBox txtAuthor = (Excel.TextBox)sheet.TextBoxes( " txtAuthor " );
Excel.TextBox txtDate = (Excel.TextBox)sheet.TextBoxes( " txtDate " );
Excel.TextBox txtVersion = (Excel.TextBox)sheet.TextBoxes( " txtVersion " );
txtAuthor.Text =   " KLY.NET的Blog " ;
txtDate.Text = DateTime.Now.ToShortDateString();
txtVersion.Text =   " 1.0.0.0 " ;
} 
#endregion
// 输出Excel文件并退出 
try 
{
workBook.SaveAs(outputFile,missing,missing,missing,missing,missing,Excel.XlSaveAsAccessMode.xlExclusive,missing,missing,missing,missing);
workBook.Close( null , null , null );
app.Workbooks.Close();
app.Application.Quit();
app.Quit();
System.Runtime.InteropServices.Marshal.ReleaseComObject(workSheet);
System.Runtime.InteropServices.Marshal.ReleaseComObject(workBook);
System.Runtime.InteropServices.Marshal.ReleaseComObject(app);
workSheet = null ;
workBook = null ;
app = null ;
GC.Collect();
} 
catch (Exception e)
{
throw e;
} 
finally 
{
Process[] myProcesses;
DateTime startTime;
myProcesses = Process.GetProcessesByName( " Excel " );
// 得不到Excel进程ID,暂时只能判断进程启动时间 
foreach (Process myProcess in myProcesses)
{
startTime = myProcess.StartTime;
if (startTime > beforeTime && startTime < afterTime)
{
myProcess.Kill();
} 
} 
} 
} 
} 
}

这篇关于[NET][C#]操作Excel,套用模板并对数据进行分页的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/787519

相关文章

使用C#代码在PDF文档中添加、删除和替换图片

《使用C#代码在PDF文档中添加、删除和替换图片》在当今数字化文档处理场景中,动态操作PDF文档中的图像已成为企业级应用开发的核心需求之一,本文将介绍如何在.NET平台使用C#代码在PDF文档中添加、... 目录引言用C#添加图片到PDF文档用C#删除PDF文档中的图片用C#替换PDF文档中的图片引言在当

详解C#如何提取PDF文档中的图片

《详解C#如何提取PDF文档中的图片》提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使用,下面我们就来看看如何使用C#通过代码从PDF文档中提取图片吧... 当 PDF 文件中包含有价值的图片,如艺术画作、设计素材、报告图表等,提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使

C#使用SQLite进行大数据量高效处理的代码示例

《C#使用SQLite进行大数据量高效处理的代码示例》在软件开发中,高效处理大数据量是一个常见且具有挑战性的任务,SQLite因其零配置、嵌入式、跨平台的特性,成为许多开发者的首选数据库,本文将深入探... 目录前言准备工作数据实体核心技术批量插入:从乌龟到猎豹的蜕变分页查询:加载百万数据异步处理:拒绝界面

Python使用自带的base64库进行base64编码和解码

《Python使用自带的base64库进行base64编码和解码》在Python中,处理数据的编码和解码是数据传输和存储中非常普遍的需求,其中,Base64是一种常用的编码方案,本文我将详细介绍如何使... 目录引言使用python的base64库进行编码和解码编码函数解码函数Base64编码的应用场景注意

C#数据结构之字符串(string)详解

《C#数据结构之字符串(string)详解》:本文主要介绍C#数据结构之字符串(string),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录转义字符序列字符串的创建字符串的声明null字符串与空字符串重复单字符字符串的构造字符串的属性和常用方法属性常用方法总结摘

C#如何动态创建Label,及动态label事件

《C#如何动态创建Label,及动态label事件》:本文主要介绍C#如何动态创建Label,及动态label事件,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录C#如何动态创建Label,及动态label事件第一点:switch中的生成我们的label事件接着,

Mysql表的简单操作(基本技能)

《Mysql表的简单操作(基本技能)》在数据库中,表的操作主要包括表的创建、查看、修改、删除等,了解如何操作这些表是数据库管理和开发的基本技能,本文给大家介绍Mysql表的简单操作,感兴趣的朋友一起看... 目录3.1 创建表 3.2 查看表结构3.3 修改表3.4 实践案例:修改表在数据库中,表的操作主要

C# WinForms存储过程操作数据库的实例讲解

《C#WinForms存储过程操作数据库的实例讲解》:本文主要介绍C#WinForms存储过程操作数据库的实例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、存储过程基础二、C# 调用流程1. 数据库连接配置2. 执行存储过程(增删改)3. 查询数据三、事务处

Java进行文件格式校验的方案详解

《Java进行文件格式校验的方案详解》这篇文章主要为大家详细介绍了Java中进行文件格式校验的相关方案,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、背景异常现象原因排查用户的无心之过二、解决方案Magandroidic Number判断主流检测库对比Tika的使用区分zip

Java使用Curator进行ZooKeeper操作的详细教程

《Java使用Curator进行ZooKeeper操作的详细教程》ApacheCurator是一个基于ZooKeeper的Java客户端库,它极大地简化了使用ZooKeeper的开发工作,在分布式系统... 目录1、简述2、核心功能2.1 CuratorFramework2.2 Recipes3、示例实践3