我目前正在尝试使用OleDB读取Excel文件。
这是代码:
using System.Collections.Generic;
using System.Data;
using System.Data.OleDb;
using System.Text;
namespace WebApplication1.My_Logic.Worker
{
public class ExcelLoader
{
private string GetConnectionString()
{
Dictionary<string, string> props = new Dictionary<string, string>();
props["Provider"] = "Microsoft.ACE.OLEDB.12.0;";
props["Extended Properties"] = "Excel 12.0 XML";
props["Data Source"] = "C:\\MyExcel.xlsx";
StringBuilder sb = new StringBuilder();
foreach (KeyValuePair<string, string> prop in props)
{
sb.Append(prop.Key);
sb.Append('=');
sb.Append(prop.Value);
sb.Append(';');
}
return sb.ToString();
}
private DataSet ReadExcelFile()
{
DataSet ds = new DataSet();
string connectionString = GetConnectionString();
using (OleDbConnection conn = new OleDbConnection(connectionString))
{
conn.Open();
OleDbCommand cmd = new OleDbCommand();
cmd.Connection = conn;
// Get all Sheets in Excel File
DataTable dtSheet = conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
// Loop through all Sheets to get data
foreach (DataRow dr in dtSheet.Rows)
{
string sheetName = dr["TABLE_NAME"].ToString();
if (!sheetName.EndsWith("$"))
continue;
// Get all rows from the Sheet
cmd.CommandText = "SELECT * FROM [" + sheetName + "]";
DataTable dt = new DataTable();
dt.TableName = sheetName;
OleDbDataAdapter da = new OleDbDataAdapter(cmd);
da.Fill(dt);
ds.Tables.Add(dt);
}
cmd = null;
conn.Close();
}
return ds;
}
}
}
System.Data.OleDb
变灰(未使用),并且找不到以下类:
OleDbCommand
OleDbConnection
OleDbSchemaGuid
OleDbDataAdapter
当我查看System.Data.OleDb
时,Visual Studio仅显示2个类:
System.Data.OleDb.OleDbPermission
System.Data.OleDb.OleDbPermissionAttribute
在互联网上阅读的每个地方,唯一的答案是添加using System.Data.OleDb
,但是我确实有,并且Visual Studio似乎知道。
它是Visual Studio 2017中新生成的ASP.NET Core 2.1 API项目。
答案 0 :(得分:0)
OleDb在.NET Core中不可用,因为它没有为Windows以外的其他平台实现。
请参见以下github thread。
如果您想阅读xlsx,只需使用跨平台且受.NET core支持的OpenXmlSdk。
在以下thread中了解如何使用OpenXmlSdk读取excel文件。