国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C# > 正文

c#中合并excel表格的方法示例

2020-01-24 00:57:40
字體:
供稿:網(wǎng)友

有多個結(jié)構(gòu)一樣的Excel,帶復(fù)雜表頭需要合并為一個,且去掉多余的表頭數(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為表格寬度標(biāo)志(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();     //保存目標(biāo)的對象    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>     /// 關(guān)閉工作表     /// </summary>     void CloseBook()    {      bookSource.Close( false , Missing.Value, Missing.Value);    }     /// <summary>     /// 復(fù)制表頭     /// </summary>     void CopyHeader()    {      Excel.Range range = sheetSource.get_Range( "A1" , _columnEnd + _headerRowCount.ToString());      range.Copy(sheetDest.get_Range( "A1" ,Missing.Value));      _currentRowCount += _headerRowCount;    }     /// <summary>     /// 復(fù)制數(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>     /// 保存結(jié)果     /// </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">目標(biāo)文件</param>     /// <param name="columnEnd">最后一列標(biāo)志</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();    }  }}

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持武林網(wǎng)。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 平远县| 华阴市| 理塘县| 庆元县| 东安县| 八宿县| 女性| 南和县| 原平市| 孝义市| 汽车| 江北区| 随州市| 东方市| 河源市| 泰宁县| 海晏县| 琼结县| 普洱| 黎川县| 无极县| 伊吾县| 桦甸市| 十堰市| 南华县| 香港| 厦门市| 永川市| 扎兰屯市| 乡城县| 德惠市| 天峻县| 晴隆县| 郓城县| 东乌珠穆沁旗| 中牟县| 龙游县| 黄陵县| 门头沟区| 仪征市| 阿鲁科尔沁旗|