前言
小夥伴們在使用c#開發時,可能需要將一些資訊寫入到txt,這裡就給大家介紹幾種常用的方法。
方法:1.將由字串組成的陣列寫入txt
此種方法不需要使用flush和close().
如果沒有writelines.txt,系統會自動幫忙建立乙個
string lines = ;
system.io.file.writealllines(@"想儲存的位置\writelines.txt", lines);
2.把乙個字串寫入txt
此種方法不需要使用flush和close().
如果沒有writelines.txt,系統會自動幫忙建立乙個
如果想bdspuyxcr換行,在換行處加上"\r\n"即可
string text = "這是第一行" + "\r\n" +"這是第二行 ";
system.io.file.writealltext(@"想儲存的位置\writelines.txt", text);
3.使用streamwriter
此種方法using替代了flush和close()的功能
如果沒有writelines.txt,系統會自動幫忙建立乙個
自動換行
如果要在原有txt檔案上新增內容,則將streamwriter中的bdspuyxcr方法設定為true
如果覆蓋原有檔案,則設定為false
string linewww.cppcns.coms = ;
using (systembdspuyxcr.io.streamwriter file =
new system.io.streamwriter(@"想儲存的位置\writelines.txt",false))}總結
C 之txt的資料寫入
小夥伴們在使用c 開發時,可能需要將一些資訊寫入到txt,這裡就給大家介紹幾種常用的方法。string lines system.io.file.writealllines 想儲存的位置 writelines.txt lines string text 這是第一行 r n 這是第二行 system....
陣列 的幾種常見方法
unshift 新增,將要給定的數值新增到陣列的開頭 var arr 西瓜 蘋果 雪梨 香蕉 arr.unshift 桃子 哈密瓜 桃子 哈密瓜 西瓜 蘋果 雪梨 香蕉 console.log arr shift 方法 從陣列中刪除第乙個元素,並返回該元素的值。此方法更改陣列的長度。從陣列中刪除的元...
C 寫入資料到txt檔案
string readme readme.txt 檔名稱 string txtpath path readme 檔案存放路徑 directoryinfo directoryinfo new directoryinfo path if directoryinfo.exists 判斷 資料夾是否存在 i...