首先导入命名空间用using System.IO;
然后定义txt文本的完整路径,譬如 string path=@"D:\DiduTimes\CsharpSelfDoc\CsharpTemp\1.txt";
然后利用file的方法来读取,最常用的有2种,
1)用 string[]strText= File.ReadAllLines(path,Encoding.Default);按行读取,用字符串数组来接收
2)用string[]strTexts File.ReadAllText(path,Encoding.Default);将整个文本返回,用字符串来接受 |