c# 如何逐行读取txt文件的内容

如题所述

string line = string.Empty;
uising(StreamReader reader = new StreamReader("文件路径"))
{
    while((line = reader.ReaderLine())!="")
    {
        Consolw.WriteLine(line);
    }
}

温馨提示:内容为网友见解,仅供参考
第1个回答  2010-11-17
StreamReader readline()本回答被提问者采纳

c#窗体怎么读取txt文件?
在上述代码中,我们使用了 OpenFileDialog 对象来打开文件选择对话框,让用户选择要读取的文本文件。然后,我们通过 StreamReader 对象读取文件的内容,并将其显示在窗体中的文本框 (txtFileContent) 中。请注意,上述代码需要在窗体中添加一个按钮 (btnReadFile) 和一个文本框 (txtFileContent),并将按钮...

C#怎么分行读取Txt文件的数据
(1).使用FileStream类进行文件的读取,并将它转换成char数组,然后输出。 byte[] byData = new byte[100]; char[] charData = new char[1000]; public void Read() { try { FileStream file = new FileStream("E:\\\\test.txt", FileMode.Open); file.Seek(0, SeekOrigin.Begin); file.Read(byData, 0...

c#如何读取txt文件中指定内容段的数据?如下所示格式:
[DllImport("kernel32")]private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);[DllImport("kernel32")]private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string fileP...

c#对指定文件夹里的所有txt文件进行统一的的处理,后还按原来的名字存储...
读txt文件: using(StreamReader sr=new StreamReader("文件路径")){ string strTXT=string.Empty;while((strTXT=sr.ReadLine())!=null){ \/\/用流读取是一行行读的,这里是你想把数据放到哪里,比如说datatable \/\/或者List,个人感觉List比较好 } } 将处理后的数据写入到txt文件然后存进新的文...

C#怎么优化读取千万行的txt文本文档
采用ReadLine方法,换成读一行判断一行,这样耗费的内存会小许多

c#中如何用list对文本文件中的词语按行去重并统计每个词语的次数
Generic;using System.Linq;using System.Text;using System.IO;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { \/\/从文本文件中读出所有行 string[] lines = File.ReadAllLines("文本1.txt"); \/\/构造一个Linq查询 var qry = from ...

C语言,怎么用strchr查找txt中的内容?
如果要读取txt文件中特定的内容,可以使用标准库函数fgets进行逐行读取,然后使用字符串处理函数(如strstr)或正则表达式对每行进行匹配。代码如下:```c include <stdio.h> include <string.h> int main(){ FILE* fp = fopen("input.txt", "r");char* pattern = "No";char line[1024];while...

如何用C#程序读取andriod手机上的文件
d:\\\\b.txt","w");\/\/写方式打开文件a.txt while(fgets(text,1024,fp1)!=NULL)\/\/逐行读取fp1所指向文件中的内容到text中 { puts(text);\/\/输出到屏幕 fputs(text,fp2);\/\/将内容写到fp2所指向文件中 } fclose(fp1);\/\/关闭文件a.txt,有打开就要有关闭 fclose(fp2);\/\/关闭文件b.txt} ...

如何在C#控制台显示出快递查询的跟综结果?
txt文件得到了?我懂读txt。string str=File.ReadAllText(@"E:\\120\\张氏.txt"); \/\/一次性读取,全部内容作为字符串赋给str string[ ] s=File.ReadAllLines(@"E:\\120\\张氏.txt");\/\/逐行读取,一行内容就作为数组s的1个元素 然后你用控制台输出就可以了。

需要用C#输入txt文件,要求按以下格式
static void Main(string[] args) { string strReadFilePath = @"C:\\a.txt"; string[] result = new string[11] ; result[0] = "a"; using (StreamReader srReadFile = new StreamReader(strReadFilePath)) { int i=0; while (!srReadFile.EndOfStream) {...

相似回答
大家正在搜