我只想阅读一个大型CSV文件并将Stream位置保存在列表中。之后我必须从列表中读取位置并将Streamreader的位置设置为该char并读取一行! 但是在我读完第一行并用
返回streamposition之后StreamReader r = new StreamReader("test.csv");
r.readLine();
Console.WriteLine(r.BaseStream.Position);
我得到“177”,这是文件中的总字符数! (它只是一个简短的示例文件) 我没有在这里找到任何类似的东西,这帮助了我!
为什么?
完整的方法:
private void readfile(object filename2)
{
string filename = (string)filename2;
StreamReader r = new StreamReader(filename);
string _top = r.ReadLine();
top = new Eintrag(_top.Split(';')[0], _top.Split(';')[1], _top.Split(';')[2]);
int siteindex = 0, index = 0;
string line;
sitepos.Add(r.BaseStream.Position); //sitepos is the a List<int>
while(true)
{
line = r.ReadLine();
index++;
if(!string.IsNullOrEmpty(line))
{
if (index > seitenlaenge)
{
siteindex++;
index = 1;
sitepos.Add(r.BaseStream.Position);
Console.WriteLine(line);
Console.WriteLine(r.BaseStream.Position.ToString());
}
}
else break;
maxsites = siteindex;
}
reading = false;
}
该文件如下所示:
name;age;city
Simon;20;Stuttgart
Daniel;34;Ostfildern
等等 这是一个程序练习: http://clean-code-advisors.com/ressourcen/application-katas (Katas CSV查看器)我目前正在读书3
答案 0 :(得分:13)
StreamReader
正在使用缓冲流,因此StreamReader.BaseStream.Position
可能会超过您使用ReadLine
实际“读取”的字节数。
讨论如何在this SO question中执行您要执行的操作。