Java I O 字元流的使用詳解

2021-09-24 04:59:49 字數 672 閱讀 3485

簡介:字元流的資料儲存單位是char,常用於文字的處理。其中可分為普通字元流和緩衝字元流。

一、普通字元流:

構造物件:使用時需要處理異常

輸入流:filereader fr=new filereader( string filepath );    .read()讀 丨 .close()關閉

輸出流:filewriter fw=new filewriter( string filepath );.write()寫 丨 .flush:重新整理 丨 .close()關閉

public class charinput  catch (exception e) 

}

二、緩衝字元流:自帶緩衝區,提高讀取操作效率

構造物件:

輸入流:bufferedreader br=new bufferedreader( fr ); .readline:讀取一行,string型別

輸出流:bufferedwriter bw=new bufferedwriter(fw ); .write()寫入

public static void main(string args) 

} catch (exception e) finally catch (ioexception e)

}}

Java IO流 字元流 與 轉換流 詳解

乙個字元字元的讀 只能用來操作文字 不能寫其他格式 寫入字元流的抽象類 實現子類 filewriter 示例 public class demo04 fwriter.write c fwriter.flush fwriter.write c,1,3 fwriter.flush 使用字串直接寫入 fw...

java IO 檔案流詳解

本篇博文學習了一下內容 fileinputstream 位元組輸入流 構造方法 讀取檔案 fileoutputstream 位元組輸出流 構造方法 寫入檔案 filerearder 字元輸入流 構造方法 讀取檔案 filewriter 字元輸出流 構造方法 寫出檔案 位元組檔案和字元檔案 總結 構造...

java IO流 字元流FileReader

1.字元流是什麼 字元流是可以直接讀寫字元的io流 字元流讀取字元,就要先讀取到位元組資料,然後轉為字元.如果要寫出字元,需要把字元轉為位元組再寫出.樣列 filereader fr new filereader txt int x fr.read system.out.println x char...