Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我找到了“添加 Java 异常断点”菜单项,但它似乎只适用于我选择的确切异常类型。因此,如果我要求它中断Exception,它不会在 a 的情况下中断NumberFormatException。我如何让它打破所有异常?
Exception
NumberFormatException
我的活动无缘无故退出,没有 LogCat 输出,因此很高兴了解正在发生的任何异常,无论是捕获还是未捕获,无论是在我的代码中还是仅在 Android 中。
java.lang.Throwable
Error
您应该能够使用它在窗口中指定的模式匹配来执行此操作。具体来说,*将匹配任何字符串(包括空字符串),因此*Exception*将匹配其中包含子字符串Exception的所有字符串,包括字符串Exception本身和Exception开头或结尾的字符串。
*
*Exception*