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

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());

堆栈跟踪已写入文件。