以下是我在WinForms应用程序中将CSV文件加载到我的DataGridView中的代码:
private void loadCSV(string path)
{
if (!File.Exists(path))
{
MessageBox.Show(this, "File does not exist:\r\n" + path, "No File", MessageBoxButtons.OK, MessageBoxIcon.Stop);
return;
}
try
{
string conStr = @"Driver={Microsoft Text Driver (*.txt; *.csv)};Dbq=C:;Extensions=csv,txt";
OdbcConnection conn = new OdbcConnection(conStr);
OdbcDataAdapter da = new OdbcDataAdapter("Select * from " + path, conn);
dt = new DataTable(path);
da.Fill(dt);
this.path = path;
dataGridView.DataSource = dt;
da.Dispose();
conn.Close();
conn.Dispose();
}
catch (Exception ex)
{
MessageBox.Show(this, "There was an error loading the CSV file:\r\n" + ex.Message, "IO Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
}
适用于几乎所有有效的CSV文件,但具有特定字符的文件夹除外。
e.g。它适用于
但不适用于
有人知道我该怎么办吗?我想我需要以某种方式增强conStr。
答案 0 :(得分:4)
将您的选择语句更改为
OdbcDataAdapter da = new OdbcDataAdapter("Select * from [" + path + "]", conn);
文件名中的空格会将其写下来。