IO 節點流 組合

2021-07-11 02:05:24 字數 698 閱讀 4876

/**

* 1、檔案--程式-》位元組陣列

* 1)檔案輸入流

* 位元組陣列輸出流

* 2、位元組陣列--程式-》檔案

* 1)位元組陣列輸入流

* 檔案輸出流

* @author administrator

* */

public class demo02

/*** 2、位元組陣列--程式-》檔案

* 1)位元組陣列輸入流

* 檔案輸出流

*/public static void tofilebytearray(byte src,string destpath) throws ioexception

os.flush();

//釋放資源

os.close();

is.close();

}//1、檔案--程式-》位元組陣列

public static byte getbytesfromfile(string srcpath) throws ioexception

bos.flush();

//獲取資料

dest=bos.tobytearray();

bos.close();

is.close();

return dest;

}}

IO流3 IO流 節點流 字元流的使用

read 將hello.txt檔案內容讀入程式中,並輸出到控制台 test public void testfilereader catch ioexception e finally catch ioexception e 說明點 read 的理解 返回讀入的乙個字元。如果達到檔案末尾,返回 1 ...

IO流 字元流 IO流小結 IO流案例總結

1 字元流 掌握 1 位元組流操作中文資料不是特別的方便,所以就出現了轉換流。轉換流的作用就是把位元組流轉換字元流來使用。2 轉換流其實是乙個字元流 字元流 位元組流 編碼表 3 編碼表 a 就是由字元和對應的數值組成的一張表 b 常見的編碼表 ascii iso 8859 1 gb2312 gbk...

IO流 記憶體流

記憶體流 bytearrayinputstream bytearrayoutputstream chararrayinputstream charoutputstream stringreader stringwriter 目的 將資料臨時存放在陣列中 相當於記憶體中 tips 上面的writer ...