對檔案進行資料輸入
需要用到
using system.io;
string path=」//檔案路徑」;
streamwrier a=new streamwriter(path,true);
a. writeline(「//輸出的字元」);
a. close(); //關閉檔案
a. dispose(); //釋放記憶體
對檔案進行資料讀取
需要用到
using system.io;
string path=」//檔案路徑」;
string dialogue;
streamwriter b=new streamwriter(path);
dialogue=b.readtoend();
ps: 對檔案讀取時,若無true ,則程式開啟檔案時,若檔案不存在則建立檔案(有沒有true都會這樣),若存在,則覆蓋檔案。
[18.11.15更新]
讀取檔案方法(2)
即使用file類,呼叫靜態方法file.openalltext(string path,』編碼方式』)開啟檔案。(編碼方式推薦使用encoding.default);
ps: 對檔案讀取時,若無true ,則程式開啟檔案時,若檔案不存在則建立檔案(有沒有true都會這樣),若存在,則覆蓋檔案。
多行文字控制項的讀取
string arr=new string[textbox1.lines.length];
for(int i=0;i開啟資料夾
using system diagnostics;
process.start(file_path);
[18.11.15]
複製檔案到其他路徑的方法
通過呼叫file類的靜態方法copy來實現,即:
file.copy(原檔案路徑,新路徑);
關於Winform中的訊息框MessageBox
在 windows 窗體應用程式中向使用者提示操作時也是採用訊息框彈出的形式。訊息框是通過 messagebox 類來實現的,在 messagebox 類中僅定義了 show 的多個過載方法,該方法的作用就是彈出乙個訊息框。由於 show 方法是乙個靜態的方法,因此呼叫該方法只需要使用message...
關於Winform三種Timer的總結
timer例項 複製 示例 using system using system.threading class timerexample creating timer.n datetime.now.tostring h mm ss.fff timer statetimer new timer tim...
關於WINFORM中輸入法的設定
johnsuna 阿山net 的專欄 開發中正好遇到這類問題,網路真好啊 下面是正文收集,感謝作者的辛勤工作給我們帶來的便利.在winform中我們經常遇到文字輸入框中輸入法被禁用或老是變全形輸入法等問題,經查閱相關資料,現小結如下 一 control.imemode 屬性 獲取或設定控制項的輸入法...