当使用以下代码时,会发现异常处理的代码根本不会被执行:
try{
System.loadLibrary("SimpleAuthenticator");
}catch(Exception ex){
ex.printStackTrace();
}
如何解决这个问题呢?
其实很简单,只要将 Exception 改为 Throwable 就可以了:
try{
System.loadLibrary("SimpleAuthenticator");
}catch(Throwable ex){
ex.printStackTrace();
}
时间: 2024-10-08 07:07:21