C#编程-119:读取文件StreamReader类
2024-06-25 09:50:39 阅读次数:23
编程开发
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.IO;
- namespace StreamReaderTest
- {
- class Program
- {
- static void Main(string[] args)
- {
- string path = @"C:\Windows\System32\drivers\etc\hosts";
- string myline = "";
- if (File.Exists(path))
- {
- //using(){}自动帮助我们释放流所占用的空间
- //()创建过程
- //{}读取或写入的过程
- //均不能加分号
-
- using (StreamReader sr = new StreamReader(path))
- {
- myline = sr.ReadLine();
- while (myline != null)
- {
- Console.WriteLine(myline);
- myline = sr.ReadLine();
- }
- }
- }
- else
- {
- Console.WriteLine("文件不存在!");
- }
- Console.ReadLine();
- //方法一:
-
- //方法二:
- }
- }
- }
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/mouday/3046592,作者:彭世瑜,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:Python编程:calendar日历模块入门
下一篇:C#编程-99:索引器实例QQ状态