1. 程式人生 > >java簡單學習筆記20181217

java簡單學習筆記20181217

異常的處理,try--catch--finally結構,finally裡的程式碼總是會執行,當try裡有return語句執行前時,也總是要執行finally的。

自定義exception類,extends繼承自Exception類,無參和有引數的建構函式,super(msg)

語句異常throw手動丟擲異常。

方法聲明裡說明有可能產生異常用throws,如:public void test() throws IOException{}.................

I/O輸入、輸出類,File類表示檔案或者是目錄,File.isFile(),File.isDirectory()判斷,一些方法,File類的建立,new File(string path,string filename),或者File(File dir,string Filename),其他方法,file.getName(),file.listFiles(),file.canread(),file.canwrite(),file.mkdir(),file.delete()

 

隨機檔案類RandomAccessFile類,構造方法RandomAccessFile(string file,string accmode),RamdomAccessFile(File file,string accmode),

訪問方法seek(),getFilePoint(),skipBytes(int n),writeChars(string s),WriteInt(int n),readChar(),readInt().....