07 2018 档案
摘要:导入 Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.Application(); if (xlApp == null) { MessageBox.Show("无法启动EXce
阅读全文
posted @ 2018-07-31 08:20
歌风
摘要:导入 Workbook workbook = new Workbook(openFileDialog1.FileName); //实例化Workbook Worksheet sheet = workbook.Worksheets[0]; //实例化WorksheetCells cells = she
阅读全文
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.IO; using System.Data; using Aspose.Cells; /// <summ
阅读全文
摘要:public static System.Data.DataTable ReadExcel(String strFileName) { Workbook book = new Workbook(); book.Open(strFileName); Worksheet sheet = book.Workshee...
阅读全文