Xlsx 转 DataTable
2021/5/5 10:55:19
本文主要是介绍Xlsx 转 DataTable,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Xlsx 转 DataTable
public DataTable XlsxToDataTable(string vFilePath, string vSheetName) { DataTable dataTable = new DataTable(); try { SLDocument sldocument = new SLDocument(vFilePath, vSheetName); dataTable.TableName = vSheetName; SLWorksheetStatistics worksheetStatistics = sldocument.GetWorksheetStatistics(); int startColumnIndex = worksheetStatistics.StartColumnIndex; int endColumnIndex = worksheetStatistics.EndColumnIndex; int startRowIndex = worksheetStatistics.StartRowIndex; int endRowIndex = worksheetStatistics.EndRowIndex; for (int i = startColumnIndex; i <= endColumnIndex; i++) { SLRstType cellValueAsRstType = sldocument.GetCellValueAsRstType(1, i); dataTable.Columns.Add(new DataColumn(cellValueAsRstType.GetText(), typeof(string))); } for (int j = startRowIndex + 1; j <= endRowIndex; j++) { DataRow dataRow = dataTable.NewRow(); for (int i = startColumnIndex; i <= endColumnIndex; i++) { dataRow[i - 1] = sldocument.GetCellValueAsString(j, i); } dataTable.Rows.Add(dataRow); } } catch (Exception ex) { throw new Exception("Xlsx to DataTable: \n" + ex.Message); } return dataTable; }
public DataTable XlsToDataTable(string vFilePath, string vSheetName, int vJumpToRow) { DataTable dataTable = new DataTable(); Stream stream = null; try { stream = File.OpenRead(vFilePath); HSSFWorkbook hssfworkbook = new HSSFWorkbook(stream); HSSFSheet hssfsheet = (HSSFSheet)hssfworkbook.GetSheet(vSheetName); HSSFRow hssfrow = (HSSFRow)hssfsheet.GetRow(vJumpToRow - 1); int lastCellNum = (int)hssfrow.LastCellNum; for (int i = (int)hssfrow.FirstCellNum; i < lastCellNum; i++) { DataColumn column = new DataColumn(hssfrow.GetCell(i).StringCellValue); dataTable.Columns.Add(column); } dataTable.TableName = vSheetName; int lastRowNum = hssfsheet.LastRowNum; for (int i = hssfsheet.FirstRowNum + vJumpToRow; i <= hssfsheet.LastRowNum; i++) { HSSFRow hssfrow2 = (HSSFRow)hssfsheet.GetRow(i); DataRow dataRow = dataTable.NewRow(); for (int j = (int)hssfrow2.FirstCellNum; j < lastCellNum; j++) { if (hssfrow2.GetCell(j) == null) { dataRow[j] = ""; } else { dataRow[j] = hssfrow2.GetCell(j).ToString(); } } dataTable.Rows.Add(dataRow); } stream.Close(); } catch (Exception ex) { throw new Exception("Xls to DataTable: \n" + ex.Message); } finally { if (stream != null) { stream.Close(); } } return dataTable; }
这篇关于Xlsx 转 DataTable的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Mybatis官方生成器资料详解与应用教程
- 2024-11-26Mybatis一级缓存资料详解与实战教程
- 2024-11-26Mybatis一级缓存资料详解:新手快速入门
- 2024-11-26SpringBoot3+JDK17搭建后端资料详尽教程
- 2024-11-26Springboot单体架构搭建资料:新手入门教程
- 2024-11-26Springboot单体架构搭建资料详解与实战教程
- 2024-11-26Springboot框架资料:新手入门教程
- 2024-11-26Springboot企业级开发资料入门教程
- 2024-11-26SpringBoot企业级开发资料详解与实战教程
- 2024-11-26Springboot微服务资料:新手入门全攻略