2012年8月23日

C# 讀取檔案

System.IO.StreamReader file = new System.IO.StreamReader(filePath);

string articleString = file.ReadToEnd();

中文亂碼
StreamReader預設是用 UTF-8做讀取 所以要再設定解碼方式
new System.IO.StreamReader(filePath, Encoding.Default);
default預設用 ANSI解碼

C# 讀取含中文的檔案

沒有留言:

張貼留言