我只想读取一个大的CSV文件并将流位置保存在列表中。之后,我必须从列表中读取位置并将流阅读器的位置设置为该字符并读取一行!!但是在我阅读了第一行并返回流位置之后
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(卡塔斯 CSV 查看器)我目前在识字 3
StreamReader
使用的是缓冲流,因此StreamReader.BaseStream.Position
可能会领先于您使用ReadLine
实际"读取"的字节数。
在这个SO问题中,有一个关于如何做你想做的事情的讨论。