我们创建了一个空列表numbers用于存储读取的整数。 使用with open("numbers.txt", "r") as file:语句打开文件,并将其赋值给变量file。with语句会自动关闭文件,这样我们就不需要显式地调用file.close()方法来关闭文件。 使用for line in file:循环遍历文件的每一行。 对于每一行,我们使用line.strip()方法去除行...
读取行:提取到字符数组中的话用:void main(){ //string str;char ch[200];ifstream out("d:\\data.txt",ios::in);while(!out.eof()){ //getline(out,str);out.getline(ch,200,'\n');cout<<ch<<endl;} out.close();}
string line = string.Empty;List<string> lines = new List<string>();using (StreamReader reader = new StreamReader(@"text1.txt")){ line = reader.ReadLine();while (line !=""&&line !=null){ lines.Add(line);Console.WriteLine(line);line = reader.ReadLine();} } //通过C#中...