using System;
using System.IO;
namespace FileApplication
{
class Program
{
static void Main(string[] args)
{
try
{
// 创建一个 StreamReader 的实例来读取文件
// using 语句也能关闭 StreamReader
using (StreamReader sr = new StreamReader("c:/jamaica.txt"))
{
string line;
// 从文件读取并显示行,直到文件的末尾
while ((line = sr.ReadLine()) != null)
{
Console.WriteLine(line);
}
}
}
catch (Exception e)
{
// 向用户显示出错消息
Console.WriteLine("The file could not be read:");
Console.WriteLine(e.Message);
}
Console.ReadKey();
}
}
}
相关文章
- 12-02Python 3 读写文件的简单方法!
- 12-02Vs2013 头文件注释
- 12-02[powershell] insert current time to file / Windows下插入当前时间到指定文件
- 12-02mount – FreeBSD jails – Nginx,PHP-FPM,WordPress – jails之间共享文件夹(只读)
- 12-02FreeBSD:“打开的文件过多”,但应该可以打开另外160,000个文件
- 12-02nginx – 上游过早关闭连接,同时从上游,客户端读取响应头
- 12-02python-kqueue跟踪文件更改-处理先前事件时丢失事件的机会是什么?
- 12-02命令行 – 将文件夹及其内容复制到所有Nginx vhosts主机
- 12-02Python克服了Windows 255路径文件名限制并将目录归档
- 12-02finder – macOS如何在ZIP文件中存储Unix文件权限