c#中合并excel表格的方法示例
更新時間:2016年10月25日 16:12:32 作者:紅葉飄飛落
本篇文章主要介紹了c#中合并excel表格的方法,就是將excel表格結構一樣的合并到一起,具有一定的參考價值,感興趣的小伙伴們可以參考一下。
有多個結構一樣的Excel,帶復雜表頭需要合并為一個,且去掉多余的表頭數(shù)據(jù),可以用COM組件來讀取每個Excel表格的Range來合并到一個新的表格中。樣例如圖

有很多相同格式的表格,合并代碼如下:
using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
using Excel = Microsoft.Office.Interop.Excel;
namespace ConsoleApplication20
{
//添加引用-COM-MicroSoft Excel 11.0 Object Libery
class Program
{
static void Main( string [] args)
{
//M為表格寬度標志(Excel中的第M列為最后一列),3為表頭高度
MergeExcel.DoMerge( new string []
{
@ "E:/excel/類型A/公司A.xls" ,
@ "E:/excel/類型A/公司B.xls"
},
@ "E:/excel/類型A/合并測試.xls" , "M" , 3);
MergeExcel.DoMerge( new string []
{
@ "E:/excel/類型B/統(tǒng)計表A.xls" ,
@ "E:/excel/類型B/統(tǒng)計表B.xls"
},
@ "E:/excel/類型B/合并測試.xls" , "I" , 4);
}
}
public class MergeExcel
{
Excel.Application app = new Microsoft.Office.Interop.Excel.ApplicationClass();
//保存目標的對象
Excel.Workbook bookDest = null ;
Excel.Worksheet sheetDest = null ;
//讀取數(shù)據(jù)的對象
Excel.Workbook bookSource = null ;
Excel.Worksheet sheetSource = null ;
string [] _sourceFiles = null ;
string _destFile = string .Empty;
string _columnEnd = string .Empty;
int _headerRowCount = 1;
int _currentRowCount = 0;
public MergeExcel( string [] sourceFiles, string destFile, string columnEnd, int headerRowCount)
{
bookDest = (Excel.WorkbookClass)app.Workbooks.Add(Missing.Value);
sheetDest = bookDest.Worksheets.Add(Missing.Value, Missing.Value, Missing.Value, Missing.Value) as Excel.Worksheet;
sheetDest.Name = "Data" ;
_sourceFiles = sourceFiles;
_destFile = destFile;
_columnEnd = columnEnd;
_headerRowCount = headerRowCount;
}
/// <summary>
/// 打開工作表
/// </summary>
/// <param name="fileName"></param>
void OpenBook( string fileName)
{
bookSource = app.Workbooks._Open(fileName, Missing.Value, Missing.Value, Missing.Value, Missing.Value
, Missing.Value, Missing.Value, Missing.Value, Missing.Value
, Missing.Value, Missing.Value, Missing.Value, Missing.Value);
sheetSource = bookSource.Worksheets[1] as Excel.Worksheet;
}
/// <summary>
/// 關閉工作表
/// </summary>
void CloseBook()
{
bookSource.Close( false , Missing.Value, Missing.Value);
}
/// <summary>
/// 復制表頭
/// </summary>
void CopyHeader()
{
Excel.Range range = sheetSource.get_Range( "A1" , _columnEnd + _headerRowCount.ToString());
range.Copy(sheetDest.get_Range( "A1" ,Missing.Value));
_currentRowCount += _headerRowCount;
}
/// <summary>
/// 復制數(shù)據(jù)
/// </summary>
void CopyData()
{
int sheetRowCount = sheetSource.UsedRange.Rows.Count;
Excel.Range range = sheetSource.get_Range( string .Format( "A{0}" , _headerRowCount + 1), _columnEnd + sheetRowCount.ToString());
range.Copy(sheetDest.get_Range( string .Format( "A{0}" , _currentRowCount + 1), Missing.Value));
_currentRowCount += range.Rows.Count;
}
/// <summary>
/// 保存結果
/// </summary>
void Save()
{
bookDest.Saved = true ;
bookDest.SaveCopyAs(_destFile);
}
/// <summary>
/// 退出進程
/// </summary>
void Quit()
{
app.Quit();
}
/// <summary>
/// 合并
/// </summary>
void DoMerge()
{
bool b = false ;
foreach ( string strFile in _sourceFiles)
{
OpenBook(strFile);
if (b == false )
{
CopyHeader();
b = true ;
}
CopyData();
CloseBook();
}
Save();
Quit();
}
/// <summary>
/// 合并表格
/// </summary>
/// <param name="sourceFiles">源文件</param>
/// <param name="destFile">目標文件</param>
/// <param name="columnEnd">最后一列標志</param>
/// <param name="headerRowCount">表頭行數(shù)</param>
public static void DoMerge( string [] sourceFiles, string destFile, string columnEnd, int headerRowCount)
{
new MergeExcel(sourceFiles, destFile, columnEnd, headerRowCount).DoMerge();
}
}
}
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關文章
C#簡單查詢SQLite數(shù)據(jù)庫是否存在數(shù)據(jù)的方法
這篇文章主要介紹了C#簡單查詢SQLite數(shù)據(jù)庫是否存在數(shù)據(jù)的方法,涉及C#調用SQLite組件及針對SQLite數(shù)據(jù)庫基本的連接、查詢、關閉等使用技巧,需要的朋友可以參考下2016-07-07
C# char[]與string byte[]與string之間的轉換詳解
在本篇文章里小編給大家分享的是關于C# char[]與string byte[]與string之間的轉換的知識點內容,需要的朋友們參考下2019-11-11

