关于package com.test1;import .*;class Mine { /*功能:排序 * 作者:xzl * 日期:2011.11.26 */ public static void main(String[] args) { Mine m=new Mine(); intln( ethod()); } public int amethod() { int i=-1; try{ FileInputStream dis=new FileInputStream(“aaa.txt”); }catch(FileNotFoundException fne) { intln(“FileNotFound”); return i; }catch(IOException e){} finally { ++i; intln(“finally”); } return 0; } }的问题
如果正确找到aaa.txt;即存在此文件,则输出结果为:
finally
0
不存在此文件,或是路径不对,则输出结果为:
FileNotFound
finally
-1