2013年7月15日 星期一

C#讀取 .txt檔

using System.IO;
using System.Text;

string path = "C:\\Documents and Settings\\USER\\桌面\\json.txt";
string text = "";
using (StreamReader sr = new StreamReader(path, Encoding.Default))
{
    text += sr.ReadToEnd();
}

標籤:

0 個意見:

張貼留言

訂閱 張貼留言 [Atom]

<< 首頁