string ExcelName ="xxx"
string path = Application.StartupPath +"//"+ExcelName + ".xlsx";//获取表的地址 if (!File.Exists(path)) { MessageBox.Show(ExcelName+"表没有找到"); return; } using (ExcelPackage Excel = new ExcelPackage(new FileStream(path, FileMode.Open)))//打开表 { ExcelWorksheet sheet = ExcelBuff.Workbook.Worksheets[1]; for (int startRow= sheet.Dimension.Start.Row, endRow = sheet.Dimension.End.Row; startRow <= endRow; startRow++) { }
}
相关文章
- 06-27DataTable to Excel(使用NPOI、EPPlus将数据表中的数据读取到excel格式内存中)
- 06-27Excel表格下载和读取
- 06-27读取excel表格数据
- 06-27读取excel表格内容
- 06-27读取excel表格合并单元空值?
- 06-27[转] Windows下使用Python读取Excel表格数据
- 06-27python自动化,使用unittest对界面操作,读取excel表格数据输入到页面查询结果,在把结果保存到另外一张excel中
- 06-27go读取excel表格数据
- 06-27小程序读取excel表格数据,并存储到云数据库
- 06-27C#读取Excel文件:通过OleDb连接,把excel文件作为数据源来读取