// 強制重新整理
os.flush();
// 釋放資源,關閉流,遵循先開啟後關閉原則
os.close();
is.close();}}
public
class test
} catch (filenotfoundexception e)
catch (ioexception e)
finally
catch (ioexception e)}}
}}
public
class test
catch (filenotfoundexception e)
catch (ioexception e)
finally
catch (ioexception e)}}
}}
public
class test
// 強制重新整理
writer.flush();
} catch (filenotfoundexception e)
catch (ioexception e)
finally catch (ioexception e)
}if(null!=reader) catch (ioexception e)}}
}}
編碼: 字元 編碼字符集》 二進位制
解碼:二進位制 編碼字符集》 字元
Java學習筆記 IO流
inputstream和outputstream是抽象類,他們是所有位元組輸入流和輸出流的父類。public static void main string args throws ioexceptionpublic static void main string args throws ioexc...
Java學習筆記 IO流
流按操作型別分為兩種 位元組流與字元流。位元組流可以操作任何資料,字元流只能操作純字元資料,比較方便 位元組流 基本操作與字元流相同,位元組流可以操作任意型別資料 位元組流和字元流的區別 1 位元組流用來讀取位元組資料 2 字元流用來讀取字元資料 3 由於計算機中儲存和傳輸資料是以位元組的形式,所以...
Java學習筆記之 IO流之列印流
列印流 三個常量 1.system.in 輸入流 2.system.out 輸出流 除錯 列印日誌 3.system.err 列印出的顏色是紅色的 重定向setin setout seterr 下面為demo public class printstreamdemo01 我們可以看到檔案如下 然後我...