- 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();
- //方法一:
- //方法二:
- }
- }
- }
C#编程-119:读取文件StreamReader类_彭世瑜_新浪博客
原创
©著作权归作者所有:来自51CTO博客作者彭世瑜的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
C#编程-129:Graphics对象_彭世瑜_新浪博客
usingSystem;usingSystem.Collections.Generic;usingSystem.Compone
object 面向对象编程 封装 aop 对象创建 -
C#编程-125:ASCII码表_彭世瑜_新浪博客python C
-
C#编程-138:网络编程基础_彭世瑜_新浪博客
网络编程基础_彭世瑜_新浪博客
网络 python 编程语言 算法 java -
c#文件生成Dll文件_彭世瑜_新浪博客
在vs中设置输出类型即可
python java linux c++