不使用OLEDB从excel中导入数据
本文关键字:导入 数据 excel OLEDB | 更新日期: 2023-09-27 18:17:47
嗨,是否有可能在不使用OLEDB
的情况下加载excel数据,我使用连接字符串为.xls and .xlsx
编写了如下代码
ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + pFilePath + ";Extended Properties='"Excel 8.0;HDR=Yes;IMEX=2'"";
ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + pFilePath + ";Extended Properties='"Excel 12.0;HDR=Yes;IMEX=2'"";
在我的系统中12.0
相关的dll
不存在,我得到了一个错误。所以我想知道是否有什么方法可以达到我的要求,而不是一般的方法
编写示例代码
public void Method(string pFilePath)
{
DataTable dt = new DataTable();
using (SpreadsheetDocument spreadSheetDocument = SpreadsheetDocument.Open(pFilePath, false))
{
WorkbookPart workbookPart = spreadSheetDocument.WorkbookPart;
IEnumerable<Sheet> sheets = spreadSheetDocument.WorkbookPart.Workbook.GetFirstChild<Sheets>().Elements<Sheet>();
string relationshipId = sheets.First().Id.Value;
WorksheetPart worksheetPart = (WorksheetPart)spreadSheetDocument.WorkbookPart.GetPartById(relationshipId);
Worksheet workSheet = worksheetPart.Worksheet;
SheetData sheetData = workSheet.GetFirstChild<SheetData>();
IEnumerable<Row> rows = sheetData.Descendants<Row>();
foreach (Cell cell in rows.ElementAt(0))
{
dt.Columns.Add(GetCellValue(spreadSheetDocument, cell));
}
foreach (Row row in rows)
{
DataRow tempRow = dt.NewRow();
for (int i = 0; i < row.Descendants<Cell>().Count(); i++)
{
tempRow[i] = GetCellValue(spreadSheetDocument, row.Descendants<Cell>().ElementAt(i - 1));
}
dt.Rows.Add(tempRow);
}
}
dt.Rows.RemoveAt(0);
}
public static string GetCellValue(SpreadsheetDocument document, Cell cell)
{
SharedStringTablePart stringTablePart = document.WorkbookPart.SharedStringTablePart;
string value = cell.CellValue.InnerXml;
if (cell.DataType != null && cell.DataType.Value == CellValues.SharedString)
{
return stringTablePart.SharedStringTable.ChildElements[Int32.Parse(value)].InnerText;
}
else
{
return value;
}
}
但是在foreach (Row row in rows)
这个条件下,我得到一个异常作为Specified argument was out of the range of valid values.
Parameter name: index
我从excel读取到mysql数据库。也许这不是最好的方法。下面是我的代码:
Excel.Application xlApp = new Excel.Application();
Excel.Workbook xlWorkbook = xlApp.Workbooks.Open(@"''xxxx'yyyy.xlsx");
Excel._Worksheet xlWorksheet = xlWorkbook.Sheets[1];
Excel.Range xlRange = xlWorksheet.UsedRange;
int rowCount = xlRange.Rows.Count;
int colCount = xlRange.Columns.Count;
string Kund = "";
for (int i = 1; i <= rowCount; i++)
{
for (int j = 1; j <= colCount; j++)
{
if ((j == 1) && (i > 1))
{
MySqlConnection conn = new MySqlConnection(databas);
Kund = xlRange.Cells[i, j].Value2.ToString();
}
...
}
...
}
xlApp.Workbooks.Close();
必须使用using Excel = Microsoft.Office.Interop.Excel;
一个月前,我从excel表格中读取了一些相当重的数据,我使用了codeplex的ExcellReader,这是一个很好的开源项目,用于从excel中读取。我希望它也会对你有所帮助。
您可以使用许多第三方组件。请在NuGet上找到相当大的列表:
https://nuget.org/packages?q=excel其中一些不需要安装office(注意关键字"standalone")。
不是所有的软件都是免费的,因此您应该执行一个适当的软件选择过程,看看哪些适合您的需求。
关于阅读XLS文件的许多建议都在堆栈
中讨论。阅读Excel 2003 &c#中的2007