天天看點

[C#]将資料存入硬碟檔案(txt)

程式中已經得到一個string(也可以是byte[],需要進行編碼),希望将它存入d:\1.txt 中

using system.io;

[C#]将資料存入硬碟檔案(txt)
[C#]将資料存入硬碟檔案(txt)

string path = @"d:\1.txt";//這是位址

string text = "這裡是要寫入的内容";

filestream fs = new filestream(path, filemode.create);

streamwriter sw = new streamwriter(fs, encoding.unicode);

sw.write(text);

sw.close();

fs.close();

[C#]将資料存入硬碟檔案(txt)