這節課講位元組輸出流和字元輸出流
輸出流和輸入流差不多,只不過輸入流是讀取檔案內容,輸出流是向檔案中寫入內容
直接看demo吧:
demo1: 通過位元組輸出流寫入檔案
public static voidmain
(string args)
catch
(ioexception e)
try
catch
(filenotfoundexception e)
catch
(ioexception e)
finally
catch
(ioexception e)
}}
demo2: 字元輸出流寫入檔案
public static voidmain
(string args)
catch
(ioexception e)
try
catch
(filenotfoundexception e)
catch
(ioexception e)
finally
catch
(ioexception e)
}}
第四課 處理流
在節點流外層巢狀處理流 inputstream new bufferedinputstream new fileinputstream inputfile outputstrem new bufferedoutputstream new fileoutputstream outputfile int...
第四課 變數和字串
變數名就像我們現實社會的名字,把乙個值賦值給乙個名字時,ta會儲存在記憶體中,稱之為變數 variable 在大多數語言中,都把這種行為稱為 給變數賦值 或 把值儲存在變數中 不過python與大多數其他計算機語言的做法稍有不同,ta並不是把值儲存在變數中,而更像是把名字貼在值的上邊。所以有些pyt...
I O流 字元流和位元組流
一 位元組流 1 位元組輸出流 outputstream 往指定檔案寫資料 常用方法 close 釋放資源 flush 重新整理流,並強制寫出所有的緩衝的輸出位元組 write byte b 將指定的 byte 陣列寫入到輸出流 write byte b,int off,int len 將指定byt...