运行代码时出现一些异常。
我想要做的是,我想继续FileNotFoundException
和NullPointerException
并打破任何其他例外。
我该怎么办呢? 感谢
答案 0 :(得分:5)
try {
stuff()
} catch( NullPointerException e ) {
// Do nothing... go on
} catch( FileNotFoundException e ) {
// Do nothing... go on
} catch( Exception e ) {
// Now.. handle it!
}
答案 1 :(得分:0)
你可以像@daniel建议的那样做,但我有一些额外的想法。
答案 2 :(得分:0)
在try块
中出现多个catch块以捕获异常<code>
try{<br/>
// Code that may exception arise.<br/>
}catch(<exception-class1> <parameter1>){<br/>
//User code<br/>
}catch(<exception-class2> <parameter2>){<br/>
//User code<br/>
}catch(<exception-class3> <parameter3>){<br/>
//User code<br/>
}
</code>