您好我在Visual Studio 2005中使用OpenFileDialog导入excel或.csv文件。 我需要在列表中显示所有标题,这应该在ComboBox上列出。
例如,如果我导入一个包含10列的文件,我的下拉列表应该显示10个值 1,2,3 .......... 10
请让我知道如何去做。
答案 0 :(得分:1)
CSV与Excel完全不同。
我会使用OpenXml库或使用OleDb驱动程序从excel文件中读取。
请看这里:Reading excel file using OLEDB Data Provider
您需要安装ACE驱动程序,但您可能已经安装了它。
答案 1 :(得分:0)
// first read *.xls file into a DataTable; don't wory it is very quick.
public DataTable ReadExcelFile(string strFilePath)
{
string sConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0; Data Source=" + strFilePath + "; Extended Properties=\"Excel 8.0; HDR=No; IMEX=1;\"";
OleDbConnection objConn = new OleDbConnection(sConnectionString);
objConn.Open();
DataTable sdt = objConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
// Change this part to read 1 row
String str = "SELECT TOP(2) * FROM [" + sdt.Rows[0]["TABLE_NAME"].ToString() + "]";
//String str = "SELECT * FROM [" + sdt.Rows[0]["TABLE_NAME"].ToString() + "]";
OleDbCommand objCmdSelect = new OleDbCommand(str, objConn);
OleDbDataAdapter objAdapter1 = new OleDbDataAdapter();
objAdapter1.SelectCommand = objCmdSelect;
DataTable dt = new DataTable();
objAdapter1.Fill(dt);
objConn.Close();
dt.AcceptChanges();
return dt;
}
现在使用DataTable
DataTable dt = ReadExcelFile(@"c:\\x.xlsx");
if (dt != null)
{
System.Windows.Forms.ComboBox cmb = new System.Windows.Forms.ComboBox();
for (int i = 0; i < dt.Columns.Count; i++)
cmb.Items.Insert(i, dt.Columns[i].ColumnName);
}