fileinputsteam专题

FileInputSteam和FileOutputStream

fis = new FileInputStream("records.txt");    如果未找到文件,就抛出异常   fos = new FileOutputStream("backup.txt",true);  //true表示追加    ,如果未找到该文件就创建该文件。