程式設計 Club
工作上的隨手筆記
2012年1月8日 星期日
C# 讀檔
using System.IO;
using System.Text;
FileStream fs = new FileStream("c:\test.txt",FileMode.Open);
StreamReader sr = new StreamReader(fs,Encoding.Default);
string s1 = "";
while((s1=sr.ReadLine()) != null)
{
...
}
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言