作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想要最高效的方式来读取和解析文件。
是否可以在 .NET 中读取文件,但不能将整个文件加载到内存中?即在我解析每一行的内容时逐行加载文件?
XmlTextReader 是将整个文件加载到内存中,还是在读取文件时将文件流式传输到内存中?
最佳答案
您可以使用 StreamReader 类的 ReadLine 方法:
string line;
// Read the file and display it line by line.
System.IO.StreamReader file =
new System.IO.StreamReader("c:\\test.txt");
while((line = file.ReadLine()) != null)
{
Console.WriteLine (line);
}
file.Close();
关于.net - 在 .NET 中读取和解析文件 - Performance For Hire,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/247066/
我是一名优秀的程序员,十分优秀!