私はWindows Forms .NET 3.5で以下を持っています
レコード数が 10,000 未満の csv では問題なく動作しますが、レコード数が 30,000 を超えると遅くなります。入力 csv ファイルは、1 ~ 1,00,000 レコードの任意のレコードにすることができます
現在使用されているコード:
/// <summary>
/// This will import file to the collection object
/// </summary>
private bool ImportFile()
{
try
{
String fName;
String textLine = string.Empty;
String[] splitLine;
// clear the grid view
accountsDataGridView.Rows.Clear();
fName = openFileDialog1.FileName;
if (System.IO.File.Exists(fName))
{
System.IO.StreamReader objReader = new System.IO.StreamReader(fName);
do
{
textLine = objReader.ReadLine();
if (textLine != "")
{
splitLine = textLine.Split(',');
if (splitLine[0] != "" || splitLine[1] != "")
{
accountsDataGridView.Rows.Add(splitLine);
}
}
} while (objReader.Peek() != -1);
}
return true;
}
catch (Exception ex)
{
if (ex.Message.Contains("The process cannot access the file"))
{
MessageBox.Show("The file you are importing is open.", "Import Account", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
else
{
MessageBox.Show(ex.Message);
}
return false;
}
}
サンプル入力ファイル :
18906,Y
18908,Y
18909,Y
18910,Y
18912,N
18913,N
高速読み取りとグリッドでの表示のために、このコードを最適化するためのアドバイスが必要です。