1.獲取當前時間
system.datetime currenttime = new system.datetime();
currenttime = system.datetime.now;
寫入配置檔案
1)建立檔案緩衝流(不知道這名字啥意思。。就當規劃檔案路徑和編寫方式用的)
filestream 類名fs=new filestream("檔案路徑---可以直接寫檔名,預設在debug裡---例如config.txt ",filemode.create);
2)用系統給的函式寫配置檔案的內容(記得要new乙個這個類的物件)
streamwriter sw=new streamwriter(fs)(引數放路徑就好)
3)寫內容
例:sw.writeline("串列埠資料(串口號,波特率,奇偶校驗位,資料位,停止位) " + currenttime.tostring());
4) 如果不寫這個函式,只有當整個程式執行結束時才會儲存檔案(用來防止資料丟失的,這個函式一結束就儲存內容)
sw.flush();
5)關閉
sw.close();
fs.close();
想了下關閉釋放記憶體還有個dispose,查閱後可知
close負責關閉業務,dispose負責銷毀物件。
但是dispose會負責close的一切事務,額外還有銷毀物件的工作,即dispose包含close
那麼就是說如果下面還有需要用到這個filestream的就不要dispose,用close,否則內容會被清空。
讀取 寫入 配置檔案
引用 using system.runtime.interopservices using system.text dllimport kernel32 private static extern long writeprivateprofilestring string section,strin...
python讀取寫入配置檔案
初始化 cf configparser.configparser cf.read config config.ini 返回所有的分組 secs cf.sections print sections secs factory分組下所有key f cf.options factory print fac...
配置檔案的讀取與寫入
讀取配置檔案 public static void main string args catch exception e 寫入配置檔案 properties prop new properties 儲存屬性到b.properties檔案 fileoutputstream ofile new file...