四個抽象類
~ inputstream 位元組輸入流的父類,資料單位為位元組 常用方法:
int
read()
;void
close()
;
~ outputstream 位元組輸出流的父類,資料單位為位元組 常用方法:
void
write
(int);
void
flush()
;void
close()
;
~ reader 字元輸入流的父類,資料單位為字元 常用方法:
int
read()
;void
close()
;
~ writer 字元輸出流的父類,資料單位為字元 常用方法:
void
writer
(string)
;void
flush()
;void
close()
;
IO檔案讀寫操作
如果是操作文字檔案型別 示例 streamwriter 用於寫入,可以使用 writeline 函式將內容寫入指定檔案當中 1 try2 16 console.writeline 寫入成功了。17 18 catch exception ex 19複製 如果檔案不存在,會自動建立。streamread...
Python檔案讀寫IO操作
python中的檔案讀寫操作 我想大部分的程式語言的檔案讀寫操作都不會有太大差別基本上都是按照以下的步驟執行的 open開啟檔案 read,write讀或寫檔案 close關閉檔案 應牢記使用close關閉檔案python中一般使用以下方式進行檔案的讀寫 open file try read,wri...
檔案IO操作讀寫檔案
寫操作對應的有 put write等。寫操作的型別 ascii碼型別的可知字串 put put只能寫入一兩個字元,多了寫不了 include using namespace std intmain int args,char ar 二進位制型別寫檔案 write include using name...