我正在将一个excel文件导入DataTable,然后从每个后续DataRow获取所需的信息,然后将其插入到列表中。 我有一个方法,当我需要将Excel(.xlsx或.xls)文件导入DataTable时,我调用它,我在我的程序中使用它6或7个其他地方,所以我很确定没有任何错误。
我的问题是,当我访问DataRow时,在这个特定的DataTable上,前几个字段包含值,但其他所有字段都只是null。 如果我在Locals窗口中查看它,我可以看到DataRow看起来像这样:
[0] {"Some string value"}
[1] {}
[2] {}
[3] {}
什么时候看起来像这样:
[0] {"Some string value"}
[1] {"Another string value"}
[2] {"Foo"}
[3] {"Bar"}
以下是处理导入的方法:
public List<DataTable> ImportExcel(string FileName)
{
List<DataTable> _dataTables = new List<DataTable>();
string _ConnectionString = string.Empty;
string _Extension = Path.GetExtension(FileName);
//Checking for the extentions, if XLS connect using Jet OleDB
if (_Extension.Equals(".xls", StringComparison.CurrentCultureIgnoreCase))
{
_ConnectionString =
"Provider=Microsoft.Jet.OLEDB.4.0; Data Source={0};Extended Properties=Excel 8.0";
}
//Use ACE OleDb
else if (_Extension.Equals(".xlsx", StringComparison.CurrentCultureIgnoreCase))
{
_ConnectionString =
"Provider=Microsoft.ACE.OLEDB.12.0;Data Source={0};Extended Properties=Excel 8.0";
}
DataTable dataTable = null;
var count = 0;
using (OleDbConnection oleDbConnection =
new OleDbConnection(string.Format(_ConnectionString, FileName)))
{
oleDbConnection.Open();
//Getting the meta data information.
//This DataTable will return the details of Sheets in the Excel File.
DataTable dbSchema = oleDbConnection.GetOleDbSchemaTable(OleDbSchemaGuid.Tables_Info, null);
foreach (DataRow item in dbSchema.Rows)
{
//reading data from excel to Data Table
using (OleDbCommand oleDbCommand = new OleDbCommand())
{
oleDbCommand.Connection = oleDbConnection;
oleDbCommand.CommandText = string.Format("SELECT * FROM [{0}]",
item["TABLE_NAME"].ToString());
using (OleDbDataAdapter oleDbDataAdapter = new OleDbDataAdapter())
{
if (count < 3)
{
oleDbDataAdapter.SelectCommand = oleDbCommand;
dataTable = new DataTable(item["TABLE_NAME"].ToString());
oleDbDataAdapter.Fill(dataTable);
_dataTables.Add(dataTable);
count++;
}
}
}
}
}
return _dataTables;
}
有什么想法吗?
答案 0 :(得分:1)
您可能需要在连接字符串中将;IMEX=1
添加到“扩展属性”。但最终,使用OleDb读取excel文件充其量是脆弱的。您应该使用第三方库来处理它们,如:
NPOI for XLS https://code.google.com/p/npoi/
EPPlus for XLSX http://epplus.codeplex.com/
答案 1 :(得分:1)
原来的问题是excel文件。 显然excel文档有一个名为Shared Strings的隐藏表。 因为这张桌子我找不到我想要的价值。