[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

相关文章

大模型研发全揭秘:客服工单数据标注的完整攻略

在人工智能(AI)领域,数据标注是模型训练过程中至关重要的一步。无论你是新手还是有经验的从业者,掌握数据标注的技术细节和常见问题的解决方案都能为你的AI项目增添不少价值。在电信运营商的客服系统中,工单数据是客户问题和解决方案的重要记录。通过对这些工单数据进行有效标注,不仅能够帮助提升客服自动化系统的智能化水平,还能优化客户服务流程,提高客户满意度。本文将详细介绍如何在电信运营商客服工单的背景下进行

基于MySQL Binlog的Elasticsearch数据同步实践

一、为什么要做 随着马蜂窝的逐渐发展,我们的业务数据越来越多,单纯使用 MySQL 已经不能满足我们的数据查询需求,例如对于商品、订单等数据的多维度检索。 使用 Elasticsearch 存储业务数据可以很好的解决我们业务中的搜索需求。而数据进行异构存储后,随之而来的就是数据同步的问题。 二、现有方法及问题 对于数据同步,我们目前的解决方案是建立数据中间表。把需要检索的业务数据,统一放到一张M

关于数据埋点,你需要了解这些基本知识

产品汪每天都在和数据打交道,你知道数据来自哪里吗? 移动app端内的用户行为数据大多来自埋点,了解一些埋点知识,能和数据分析师、技术侃大山,参与到前期的数据采集,更重要是让最终的埋点数据能为我所用,否则可怜巴巴等上几个月是常有的事。   埋点类型 根据埋点方式,可以区分为: 手动埋点半自动埋点全自动埋点 秉承“任何事物都有两面性”的道理:自动程度高的,能解决通用统计,便于统一化管理,但个性化定

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

异构存储(冷热数据分离)

异构存储主要解决不同的数据,存储在不同类型的硬盘中,达到最佳性能的问题。 异构存储Shell操作 (1)查看当前有哪些存储策略可以用 [lytfly@hadoop102 hadoop-3.1.4]$ hdfs storagepolicies -listPolicies (2)为指定路径(数据存储目录)设置指定的存储策略 hdfs storagepolicies -setStoragePo

Hadoop集群数据均衡之磁盘间数据均衡

生产环境,由于硬盘空间不足,往往需要增加一块硬盘。刚加载的硬盘没有数据时,可以执行磁盘数据均衡命令。(Hadoop3.x新特性) plan后面带的节点的名字必须是已经存在的,并且是需要均衡的节点。 如果节点不存在,会报如下错误: 如果节点只有一个硬盘的话,不会创建均衡计划: (1)生成均衡计划 hdfs diskbalancer -plan hadoop102 (2)执行均衡计划 hd

2. c#从不同cs的文件调用函数

1.文件目录如下: 2. Program.cs文件的主函数如下 using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;using System.Windows.Forms;namespace datasAnalysis{internal static

poj3468(线段树成段更新模板题)

题意:包括两个操作:1、将[a.b]上的数字加上v;2、查询区间[a,b]上的和 下面的介绍是下解题思路: 首先介绍  lazy-tag思想:用一个变量记录每一个线段树节点的变化值,当这部分线段的一致性被破坏我们就将这个变化值传递给子区间,大大增加了线段树的效率。 比如现在需要对[a,b]区间值进行加c操作,那么就从根节点[1,n]开始调用update函数进行操作,如果刚好执行到一个子节点,

C++11第三弹:lambda表达式 | 新的类功能 | 模板的可变参数

🌈个人主页: 南桥几晴秋 🌈C++专栏: 南桥谈C++ 🌈C语言专栏: C语言学习系列 🌈Linux学习专栏: 南桥谈Linux 🌈数据结构学习专栏: 数据结构杂谈 🌈数据库学习专栏: 南桥谈MySQL 🌈Qt学习专栏: 南桥谈Qt 🌈菜鸡代码练习: 练习随想记录 🌈git学习: 南桥谈Git 🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈�

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi