繁体   English   中英

当我无法使用调试器时,如何以字符串形式获取错误消息

[英]How can I get an error message as a string when I can't use the debugger

我希望能够将整个错误日志保存到 java 中的字符串中。 例如,如果我有这条线

int a = 0/0

那么这会在调试器中给出以下错误消息:

Exception in thread "main" java.lang.ArithmeticException: / by zero
    at HelloWorld.main(HelloWorld.java:8)

我想要的是能够将上述错误消息完全放在一个字符串中。 我已经尝试在 try/catch 块中包围我想要错误字符串的代码(对于这个例子,除以零),但这只会给我java.lang.ArithmeticException: / by zero部分.

这是我的 try/catch 块:

try{
       int a = 0/0;
   }catch(Exception e){
       String a = getFullErrorString(e);
   }

我的方法是:

public static String getFullErrorString(Throwable error){        
    return(
            error.getCause() == null ? String.valueOf(error) : (error + "\n" + getFullErrorString(error.getCause()))
            );       
}

我需要这样做,因为我的应用程序不能同时使用调试器和外部设备(外部设备使用 USB-C 端口,因此我无法在插入它的情况下进行调试,并且蓝牙不是一个选项,因为我的应用大量使用蓝牙)。 请帮忙!

这是一个 class 我发现对捕获和记录异常很有用:

        String rootDir = Environment.getExternalStorageDirectory().getPath();

    //----------------------------------------------------
    // Define inner class to handle exceptions
    class MyExceptionHandler implements Thread.UncaughtExceptionHandler {
        public void uncaughtException(Thread t, Throwable e){
           java.util.Date dt =  new java.util.Date();
           String fn = rootDir + "/YourFilenameHere_" + sdf.format(dt) + "_DBG.txt";
           try{ 
              PrintStream ps = new PrintStream( fn );
              e.printStackTrace(ps);
              ps.close();
              System.out.println("wrote trace to " + fn);
              e.printStackTrace(); // capture here also???
//              SaveStdOutput.stop(); // close here vs calling flush() in class 
           }catch(Exception x){
              x.printStackTrace();
           }
           lastUEH.uncaughtException(t, e); // call last one  Gives: "Unfortunately ... stopped" message
           return;    //???? what to do here
        }
    }


    Thread.UncaughtExceptionHandler lastUEH = null;

// Then in onCreate:
        lastUEH = Thread.getDefaultUncaughtExceptionHandler();  // save previous one
        Thread.setDefaultUncaughtExceptionHandler(new MyExceptionHandler());

堆栈跟踪被写入文件。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM