---短版:
当我第一次到达while (!checkReader.EndOfStream)
时,它会显示EndOfStream = true
。
---更多细节:
用户将使用Ajax AsyncFileUpload控件上载文件。我拿这个文件,确保它是我们使用的非常特定的csv格式并将其吐出到GridView中。这一切都很好,第一次通过:我得到文件,解析它,它显示很好。
但是,如果我在用户会话期间随时再次调用相同的代码StreamReader.EndOfStream = true
。
例如,用户上传文件并将其吐出到GridView中。哎呀!用户意识到有标题...我有一个带有事件处理程序的复选框,它将调用下面的方法重新读取原始文件(它存储在会话变量中)。用户检查框,事件触发,方法被调用,但我的EndOfStream
现在是真的。
我认为using ()
会改变那个标志,我尝试在下面的while循环之后添加checkReader.DiscardBufferedData
,但这些似乎都没有任何影响。
我做错了什么?
private void BuildDataFileGridView(bool hasHeaders)
{
//read import file from the session variable
Stream theStream = SessionImportFileUpload.PostedFile.InputStream;
theStream.Position = 0;
StringBuilder sb = new StringBuilder();
using (StreamReader checkReader = new StreamReader(theStream))
{
while (!checkReader.EndOfStream)
{
string line = checkReader.ReadLine();
while (line.EndsWith(","))
{
line = line.Substring(0, line.Length - 1);
}
sb.AppendLine(line);
}
}
using (TextReader reader = new StringReader(sb.ToString()))
{
//read the file in and shove it out for the client
using (CsvReader csv = new CsvReader(reader, hasHeaders, CsvReader.DefaultDelimiter))
{
sDataInputTable = new DataTable();
try
{
//Load the DataTable with csv values
sDataInputTable.Load(csv);
}
catch
{
DisplayPopupMessage("ERROR: A problem was encountered");
}
//Copy only the first 10 rows into a temp table for display.
DataTable displayDataTable = sDataInputTable.Rows.Cast<System.Data.DataRow>().Take(10).CopyToDataTable();
MyDataGridView.DataSource = displayDataTable;
MyDataGridView.DataBind();
}
}
}
编辑: SessionImportFileUpload是存储为会话变量的实际Ajax AsyncFileUpload控件(这已经是前一个人写过其他东西的情况了)。
答案 0 :(得分:2)
您将发布的文件流存储在Session中。这是不正确的,因为流不是数据,而是读取数据的机制。在单个POST请求期间,文件仅上载一次,之后您将无法再次从同一个流中读取。通常你甚至无法回放流来重新阅读它。
这就是为什么我建议只阅读一次发布的文件流并将整个内容放入Session中 - 这样内容就可以重用,并且你可以根据需要重新处理它。