原文地址为: Excel操作 Microsoft.Office.Interop.Excel.dll的使用

先说说题外话,前段时间近一个月,我一直在做单据导入功能,其中就涉及到Excel操作,接触Excel后发现他的api说明并不多,好在网上有很多朋友贴出了一些代码,我在不断的挫折中吸取了很多教训,现共享出来,给大家参考。

1. 最好在客户端使用,不要在B/S服务端使用,因为会受到IIS权限和占用内存影响,多人并发操作必然完蛋

2. 需要引入两个DLL,Microsoft.Office.Interop.Excel.dll和office.dll,在加上项目的时候,会报错“类型“Microsoft.Office.Interop.Excel.ApplicationClass” 未定义构造函数无法嵌入互操作类型“Microsoft.Office.Interop.Excel.ApplicationClass”。请改用适用的接口。”,这时只需要将将引用的DLL:Microsoft.Office.Interop.Excel;的嵌入互操作类型改为false,就可以了

3. 注意Excel中sheetindex, rowindex,columnindex都是从1开始的

4. 理清Excel里面的对象(Application、Workbook、Worksheet、Range),其中Range包含行和列还有单元格,很多方法都是弱类型object,需要拆箱和装箱操作,循环读取效率并不高,所以我在读取大批量数据Excel时,采用的方式是将Excel调用另存为csv文件,再通过文本操作字符串的方式解析csv文件,读取每一行,实践证明,这样的效率比较高。解析csv文件在附件可以供大家下载

5. 客户端必须正确安装office2003或office2007,如果是安装的wps系列的,需卸载后再重新安装office

这里我贴出我封装Excel的操作类,希望能对大家有所帮助,欢迎大家指正:

 /// <summary>/// author by :ljun/// Excel工具类,目前仅支持一个工作薄的操作/// </summary>public class ExcelHelper : IDisposable {#region 构造函数

/// <summary>/// 构造函数,将一个已有Excel工作簿作为模板,并指定输出路径/// </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;

 excelApp = new Excel.ApplicationClass(); excelApp.Visible = false;

 excelApp.DisplayAlerts = false;  //是否需要显示提示            excelApp.AlertBeforeOverwriting = false;  //是否弹出提示覆盖

//打开模板文件,得到WorkBook对象            workBook = excelApp.Workbooks.Open(templetFile, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, Type.Missing, Type.Missing);

//得到WorkSheet对象            workSheet = (Excel.Worksheet)workBook.Sheets.get_Item(1); }

/// <summary>/// 构造函数,新建一个工作簿/// </summary>public ExcelHelper() { excelApp = new Excel.ApplicationClass(); excelApp.Visible = false;

//设置禁止弹出保存和覆盖的询问提示框            excelApp.DisplayAlerts = false; excelApp.AlertBeforeOverwriting = false;

//新建一个WorkBook            workBook = excelApp.Workbooks.Add(Type.Missing);

//得到WorkSheet对象            workSheet = (Excel.Worksheet)workBook.Sheets.get_Item(1); }

#endregion

#region 私有变量

private string templetFile = null;private string outputFile = null;private object missing = System.Reflection.Missing.Value;private Excel.Application excelApp;private Excel.Workbook workBook;private Excel.Worksheet workSheet;private Excel.Range range;private Excel.Range range1;private Excel.Range range2;

#endregion

#region 公共属性

/// <summary>/// WorkSheet数量/// </summary>public int WorkSheetCount {get { return workBook.Sheets.Count; } }

/// <summary>/// Excel模板文件路径/// </summary>public string TempletFilePath {set { this.templetFile = value; } }

/// <summary>/// 输出Excel文件路径/// </summary>public string OutputFilePath {set { this.outputFile = value; } }

#endregion

#region 批量写入Excel内容

/// <summary>/// 将二维数组数据写入Excel文件/// </summary>/// <param name="arr">二维数组</param>/// <param name="top">行索引</param>/// <param name="left">列索引</param>public void ArrayToExcel(object[,] arr, int top, int left) {int rowCount = arr.GetLength(0); //二维数组行数(一维长度)int colCount = arr.GetLength(1); //二维数据列数(二维长度)

 range = (Excel.Range)workSheet.Cells[top, left]; range = range.get_Resize(rowCount, colCount); range.FormulaArray = arr; }

#endregion

#region 行操作

/// <summary>/// 插行(在指定行上面插入指定数量行)/// </summary>/// <param name="rowIndex"></param>/// <param name="count"></param>public void InsertRows(int rowIndex, int count) {try { range = (Excel.Range)workSheet.Rows[rowIndex, this.missing];for (int i = 0; i < count; i++) { range.Insert(Excel.XlDirection.xlDown, missing); } }catch (Exception e) {this.KillExcelProcess(false);throw e; } }

/// <summary>/// 复制行(在指定行下面复制指定数量行)/// </summary>/// <param name="rowIndex"></param>/// <param name="count"></param>public void CopyRows(int rowIndex, int count) {try { range1 = (Excel.Range)workSheet.Rows[rowIndex, this.missing];for (int i = 1; i <= count; i++) { range2 = (Excel.Range)workSheet.Rows[rowIndex + i, this.missing]; range1.Copy(range2); } }catch (Exception e) {this.KillExcelProcess(false);throw e; } }

/// <summary>/// 删除行/// </summary>/// <param name="sheetIndex"></param>/// <param name="rowIndex"></param>/// <param name="count"></param>public void DeleteRows(int rowIndex, int count) {try {for (int i = 0; i < count; i++) { range = (Excel.Range)workSheet.Rows[rowIndex, this.missing]; range.Delete(Excel.XlDirection.xlDown); } }catch (Exception e) {this.KillExcelProcess(false);throw e; } }

#endregion

#region 列操作

/// <summary>/// 插列(在指定列右边插入指定数量列)/// </summary>/// <param name="columnIndex"></param>/// <param name="count"></param>public void InsertColumns(int columnIndex, int count) {try { range = (Excel.Range)(workSheet.Columns[columnIndex, this.missing]);  //注意:这里和VS的智能提示不一样,第一个参数是columnindex

for (int i = 0; i < count; i++) { range.Insert(Excel.XlDirection.xlDown, missing); } }catch (Exception e) {this.KillExcelProcess(false);throw e; } }

/// <summary>/// 删除列/// </summary> /// <param name="columnIndex"></param>/// <param name="count"></param>public void DeleteColumns(int columnIndex, int count) {try {for (int i = columnIndex + count-1; i >=  columnIndex; i--) { ((Excel.Range)workSheet.Cells[1, i]).EntireColumn.Delete(0); } }catch (Exception e) {this.KillExcelProcess(false);throw e; } }

#endregion

#region 单元格操作

/// <summary>/// 合并单元格,并赋值,对指定WorkSheet操作/// </summary>/// <param name="sheetIndex">WorkSheet索引</param>/// <param name="beginRowIndex">开始行索引</param>/// <param name="beginColumnIndex">开始列索引</param>/// <param name="endRowIndex">结束行索引</param>/// <param name="endColumnIndex">结束列索引</param>/// <param name="text">合并后Range的值</param>public void MergeCells(int beginRowIndex, int beginColumnIndex, int endRowIndex, int endColumnIndex, string text) { range = workSheet.get_Range(workSheet.Cells[beginRowIndex, beginColumnIndex], workSheet.Cells[endRowIndex, endColumnIndex]);

 range.ClearContents(); //先把Range内容清除,合并才不会出错            range.MergeCells = true;

 range.Value2 = text; range.HorizontalAlignment = Excel.XlHAlign.xlHAlignCenter; range.VerticalAlignment = Excel.XlVAlign.xlVAlignCenter; }

/// <summary>/// 向单元格写入数据,对当前WorkSheet操作/// </summary>/// <param name="rowIndex">行索引</param>/// <param name="columnIndex">列索引</param>/// <param name="text">要写入的文本值</param>public void SetCells(int rowIndex, int columnIndex, string text) {try { workSheet.Cells[rowIndex, columnIndex] = text; }catch {this.KillExcelProcess(false);throw new Exception("向单元格[" + rowIndex + "," + columnIndex + "]写数据出错!"); } }

/// <summary>/// 向单元格写入数据,对当前WorkSheet操作/// </summary>/// <param name="rowIndex">行索引</param>/// <param name="columnIndex">列索引</param>/// <param name="text">要写入的文本值</param>public void SetCells(int rowIndex, int columnIndex, string text, string comment) {try { workSheet.Cells[rowIndex, columnIndex] = text; SetCellComment(rowIndex, columnIndex, comment); }catch {this.KillExcelProcess(false);throw new Exception("向单元格[" + rowIndex + "," + columnIndex + "]写数据出错!"); } }

/// <summary>/// 向单元格写入数据,对当前WorkSheet操作/// </summary>/// <param name="rowIndex">行索引</param>/// <param name="columnIndex">列索引</param>/// <param name="text">要写入的文本值</param>public void SetCellComment(int rowIndex, int columnIndex, string comment) {try { Excel.Range range = workSheet.Cells[rowIndex, columnIndex] as Excel.Range; range.AddComment(comment); }catch {this.KillExcelProcess(false);throw new Exception("向单元格[" + rowIndex + "," + columnIndex + "]写数据出错!"); } }

/// <summary>/// 单元格背景色及填充方式/// </summary>/// <param name="startRow">起始行</param>/// <param name="startColumn">起始列</param>/// <param name="endRow">结束行</param>/// <param name="endColumn">结束列</param>/// <param name="color">颜色索引</param>public void SetCellsBackColor(int startRow, int startColumn, int endRow, int endColumn, ColorIndex color) { Excel.Range range = excelApp.get_Range(excelApp.Cells[startRow, startColumn], excelApp.Cells[endRow, endColumn]); range.Interior.ColorIndex = color; }

#endregion

#region 保存文件

/// <summary>/// 另存文件/// </summary>public void SaveAsFile() {if (this.outputFile == null)throw new Exception("没有指定输出文件路径!");

try { workBook.SaveAs(outputFile, missing, missing, missing, missing, missing, Excel.XlSaveAsAccessMode.xlExclusive, missing, missing, missing, missing, missing); }catch (Exception e) {throw e; }finally {this.Quit(); } }

/// <summary>/// 将Excel文件另存为指定格式/// </summary>/// <param name="format">HTML,CSV,TEXT,EXCEL,XML</param>public void SaveAsFile(SaveAsFileFormat format) {if (this.outputFile == null)throw new Exception("没有指定输出文件路径!");

try {switch (format) {case SaveAsFileFormat.HTML: { workBook.SaveAs(outputFile, Excel.XlFileFormat.xlHtml, missing, missing, missing, missing, Excel.XlSaveAsAccessMode.xlExclusive, missing, missing, missing, missing, missing);break; }case SaveAsFileFormat.CSV: { workBook.SaveAs(outputFile, Excel.XlFileFormat.xlCSV, missing, missing, missing, missing, Excel.XlSaveAsAccessMode.xlExclusive, missing, missing, missing, missing, missing);break; }case SaveAsFileFormat.TEXT: { workBook.SaveAs(outputFile, Excel.XlFileFormat.xlUnicodeText, missing, missing, missing, missing, Excel.XlSaveAsAccessMode.xlExclusive, missing, missing, missing, missing, missing);break; }case SaveAsFileFormat.XML: { workBook.SaveAs(outputFile, Excel.XlFileFormat.xlXMLSpreadsheet, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Excel.XlSaveAsAccessMode.xlNoChange, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);break; }default: { workBook.SaveAs(outputFile, missing, missing, missing, missing, missing, Excel.XlSaveAsAccessMode.xlExclusive, missing, missing, missing, missing, missing);break; } } }catch (Exception e) {throw e; }finally {this.Quit(); } }

#endregion

#region 杀进程释放资源

/// <summary>/// 结束Excel进程/// </summary>public void KillExcelProcess(bool bAll) {if (bAll) { KillAllExcelProcess(); }else { KillSpecialExcel(); } }

 [DllImport("user32.dll", SetLastError = true)]static extern int GetWindowThreadProcessId(IntPtr hWnd, out int lpdwProcessId);

/// <summary>/// 杀特殊进程的Excel/// </summary>public void KillSpecialExcel() {try {if (excelApp != null) {int lpdwProcessId; GetWindowThreadProcessId((IntPtr)excelApp.Hwnd, out lpdwProcessId);

if (lpdwProcessId > 0)    //c-s方式 { System.Diagnostics.Process.GetProcessById(lpdwProcessId).Kill(); }else { Quit(); } } }catch { } }

/// <summary>/// 释放资源/// </summary>public void Quit() {if (workBook != null) workBook.Close(null, null, null);if (excelApp != null) { excelApp.Workbooks.Close(); excelApp.Quit(); }if (range != null) { System.Runtime.InteropServices.Marshal.ReleaseComObject(range); range = null; }if (range1 != null) { System.Runtime.InteropServices.Marshal.ReleaseComObject(range1); range1 = null; }if (range2 != null) { System.Runtime.InteropServices.Marshal.ReleaseComObject(range2); range2 = null; }if (workSheet != null) { System.Runtime.InteropServices.Marshal.ReleaseComObject(workSheet); workSheet = null; }if (workBook != null) { System.Runtime.InteropServices.Marshal.ReleaseComObject(workBook); workBook = null; }if (excelApp != null) { System.Runtime.InteropServices.Marshal.ReleaseComObject(excelApp); excelApp = null; } GC.Collect(); }

/// <summary>/// 接口方法 释放资源/// </summary>public void Dispose() { Quit(); }

#endregion

#region 静态方法

/// <summary>/// 杀Excel进程/// </summary>public static void KillAllExcelProcess() { Process[] myProcesses; myProcesses = Process.GetProcessesByName("Excel");

//得不到Excel进程ID,暂时只能判断进程启动时间foreach (Process myProcess in myProcesses) { myProcess.Kill(); } }

/// <summary>/// 打开相应的excel/// </summary>/// <param name="filepath"></param>public static void OpenExcel(string filepath) { Excel.Application xlsApp = new Excel.Application(); xlsApp.Workbooks.Open(filepath); xlsApp.Visible = true; }

#endregion

 }

/// <summary>/// 常用颜色定义,对就Excel中颜色名/// </summary>public enum ColorIndex { 无色 = -4142, 自动 = -4105, 黑色 = 1, 褐色 = 53, 橄榄 = 52, 深绿 = 51, 深青 = 49, 深蓝 = 11, 靛蓝 = 55, 灰色80 = 56, 深红 = 9, 橙色 = 46, 深黄 = 12, 绿色 = 10, 青色 = 14, 蓝色 = 5, 蓝灰 = 47, 灰色50 = 16, 红色 = 3, 浅橙色 = 45, 酸橙色 = 43, 海绿 = 50, 水绿色 = 42, 浅蓝 = 41, 紫罗兰 = 13, 灰色40 = 48, 粉红 = 7, 金色 = 44, 黄色 = 6, 鲜绿 = 4, 青绿 = 8, 天蓝 = 33, 梅红 = 54, 灰色25 = 15, 玫瑰红 = 38, 茶色 = 40, 浅黄 = 36, 浅绿 = 35, 浅青绿 = 34, 淡蓝 = 37, 淡紫 = 39, 白色 = 2 }

/// <summary>/// HTML,CSV,TEXT,EXCEL,XML/// </summary>public enum SaveAsFileFormat { HTML, CSV, TEXT, EXCEL, XML }

同时分享调用方,我用的WinForm给大家写得示例,以下是窗口截图:

有兴趣的朋友可以 下载附件

转载请注明本文地址: Excel操作 Microsoft.Office.Interop.Excel.dll的使用

Excel操作 Microsoft.Office.Interop.Excel.dll的使用相关推荐

  1. 数据转换excel操作 Microsoft.Office.Interop.Excel.dll的使用

    引用:http://www.cnblogs.com/lanjun/archive/2012/06/17/2552920.html 先说说题外话,前段时间近一个月,我一直在做单据导入功能,其中就涉及到E ...

  2. 【转载】Excel操作 Microsoft.Office.Interop.Excel.dll的使用

    http://www.cnblogs.com/lanjun/archive/2012/06/17/2552920.html 先说说题外话,前段时间近一个月,我一直在做单据导入功能,其中就涉及到Exce ...

  3. C#项目添加excel引用Microsoft.Office.Interop.Excel.dll

    C#项目添加excel引用Microsoft.Office.Interop.Excel.dll zgscwxd 2019-01-21 15:40:26  2286  收藏 4 展开 如果需要使用C#处 ...

  4. NPOI写Excel,Microsoft.Office.Interop.excel.dll 转换Excel为PDF

    首先要引用NPOI动态库和Microsoft.Office.Interop.excel.dll (Microsoft.Office.Interop.excel.dll 下载链接 ,下载以后解压文件,把 ...

  5. C#处理excel引用Microsoft.Office.Interop.Excel

    如果需要使用C#处理excel,需要引用Microsoft.Office.Interop.Excel;如何找到这个dll文件啊. (1)windows 全盘搜索 Microsoft.Office.In ...

  6. 使用Microsoft.Office.Interop.Excel批量编辑Excel文件

    先看运行结果 → 运行结果 开发环境 Microsoft Visual Studio Community 2019 Microsoft .NET Framework 4.8.04084 Microso ...

  7. C#利用Microsoft.Office.Interop.Excel导出数据到Excel

    添加引用(VS2013位于C:\Program Files (x86)\Microsoft Visual Studio 12.0\Visual Studio Tools for Office\PIA\ ...

  8. C# Microsoft.Office.Interop.Excel分组汇总

    效果如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data ...

  9. c#操作excel方式三:使用Microsoft.Office.Interop.Excel.dll读取Excel文件

    1.引用Microsoft.Office.Interop.Excel.dll 2.引用命名空间.使用别名 using System.Reflection; using Excel = Microsof ...

最新文章

  1. 如何建设数字中国?人民日报推出四个整版观察
  2. linux内核中的 哈希表_Linux内核中的设备模型及SCSI示例解析
  3. Ubuntu18 搭建apache2+php5.6+mysql服务器
  4. 腾讯云智服确保战“疫”期间服务不间断
  5. C#线程的使用和测试
  6. win定时关机_怎么让电脑定时关机,有多种办法
  7. eos操作系统_EOS相机统一的用户界面
  8. java 常用工具类的使用一
  9. Maven 建立父子项目和跨项目调用内容的步骤
  10. linux分区表导出与恢复,Linux下硬盘数据恢复与分区表恢复
  11. IntelliJ IDEA 2018 设置代码提示对大小写不敏感
  12. 用java编写一个学生类
  13. ElasticJob简单使用
  14. 3D游戏中镜头的运用
  15. 一个 Gitlab 帐号无法访问文件、克隆项目问题的解决
  16. 华为华三常用display命令
  17. java实现基金浮动_Java: 实现自回归分析/线性回归分析/基金各项指标计算等
  18. 第二章 VB的界面设计
  19. iOS 开发之使用苹果测试工具 TestFlight (进行内部和外部测试)
  20. 使用花生壳配置内网穿透

热门文章

  1. vegas可以做动画吗_Vegas 对静态图片做动画效果
  2. 彩虹外链网盘 全新界面 支持图片违规检测
  3. matlab 对数计算方法
  4. 30多个最受用的基于XML的Flash相册教程 -- Part I
  5. 简单病毒制作bat后缀
  6. 简单步骤搞定Eclipse低调黑色主题(和代码颜色风格)
  7. STM8L101活跃停机(AWU)编程教学
  8. 丰炜vb0和两台变频器的modbus rtu通信程序
  9. 对于iPhone5分辨率兼容性调整问题 .
  10. Openstack基础环境交换机常用配置(CISCO 3750G为例).md