public class Test { /** * @param args */ public static void main(String[] args) { try{ int a = 0; int b = 3; int c = b/a; }catch(Exception e){ e.printStackTrace(); Object obj[] = e.getStackTrace(); for( int i = 0; i < obj.length; i++){ System.out.println(obj[i].toString()); } } } }将捕捉到的异常完整的在屏幕上输出,代码如上:(再次鄙视CSDN,天天改变用户使用习惯,技术盲加商业盲)
打印错误信息
最新推荐文章于 2020-09-22 10:41:44 发布