堆栈跟踪在Eclipse上不可见

时间:2014-04-11 09:50:23

标签: android eclipse stack-trace classnotfoundexception android-logcat

大家好,我是Eclipse和Java的新手。我想看看ClassNotFoundException的堆栈跟踪,但我无法在LogCat上看到它。 我在代码中尝试了所有可能的输出,我在logcat中看不到任何东西。

try{
    Class.forName("com.mysql.jdbc.Driver");
    }
catch(ClassNotFoundException e){
    e.printStackTrace();
    Log.d("appcani","I am here");
    Log.d("YOUR_APP_LOG_TAG", "I got an error", e);
    }

它似乎没有进入catch但没有catch它会产生ClassNotFoundException,所以它应该进入catch。

我已经尝试过使用:

catch(Exception e)

但它不起作用

0 个答案:

没有答案