}catch( FileNotFoundException e ){
System.out.println( e );//中的"e"是指的什么?
                  
指fis = new FileInputStream( "text.txt" )操作抛出的异常,“text.txt”文件没有找到。
  }catch( IOException e ){
System.out.println( e );//这的"e"又是指的什么?
  }
指read()操作抛出的异常,读文件过程中出现了IO错误(比如:没有权限读取文件等)。