Java에서 현재 스택트레이스를 취득하려면 어떻게 해야 하나요?
에서와 같이 Java에서 현재 스택트레이스를 취득하려면 어떻게 해야 하나요?할 수 있는 NET?
찾았다Thread.dumpStack()
하지만 제가 원하는 것은 아닙니다.스택 트레이스를 출력하는 것이 아니라 돌려받고 싶습니다.
사용할 수 있습니다.Thread.currentThread().getStackTrace()
.
프로그램의 현재 스택트레이스를 나타내는의 배열을 반환합니다.
Thread.currentThread().getStackTrace();
스택의 첫 번째 요소가 무엇인지는 신경 쓰지 않아도 됩니다.
new Throwable().getStackTrace();
중요한 경우 현재 메서드에 대해 정의된 위치가 있습니다.
for (StackTraceElement ste : Thread.currentThread().getStackTrace()) {
System.out.println(ste);
}
Thread.currentThread().getStackTrace();
는 JDK1.5 이후부터 사용할 수 있습니다.
이전 버전의 경우 리다이렉트할 수 있습니다.exception.printStackTrace()
에 대해서StringWriter()
:
StringWriter sw = new StringWriter();
new Throwable("").printStackTrace(new PrintWriter(sw));
String stackTrace = sw.toString();
Tony는 인정된 답변에 대한 코멘트로 OP의 질문에 실제로 답변할 수 있는 최선의 답변을 제시했습니다.
Arrays.toString(Thread.currentThread().getStackTrace()).replace( ',', '\n' );
작전부에서는 이 제품을 입수하는 방법을 묻지 않았습니다.String
스택 트레이스에서Exception
그리고 저는 Apache Commons의 열렬한 팬이지만 위와 같은 간단한 것이 있다면 외부 라이브러리를 사용할 논리적인 이유는 없습니다.
Apache의 커먼스를 사용할 수 있습니다.
String fullStackTrace = org.apache.commons.lang3.exception.ExceptionUtils.getStackTrace(e);
Android에서 훨씬 쉬운 방법은 다음을 사용하는 것입니다.
import android.util.Log;
String stackTrace = Log.getStackTraceString(exception);
다른 솔루션(35.31자만):
new Exception().printStackTrace();
new Error().printStackTrace();
모든 스레드의 스택트레이스를 취득하려면 jstack 유틸리티인 JConsole을 사용하거나 (Posix 운영체제 상에서) kill-quit 신호를 송신합니다.
단, 이 작업을 프로그래밍 방식으로 수행할 경우 ThreadMXBean을 사용해 볼 수 있습니다.
ThreadMXBean bean = ManagementFactory.getThreadMXBean();
ThreadInfo[] infos = bean.dumpAllThreads(true, true);
for (ThreadInfo info : infos) {
StackTraceElement[] elems = info.getStackTrace();
// Print out elements, etc.
}
전술한 바와 같이 현재 스레드의 스택트레이스만 원하는 경우 훨씬 간단합니다.사용만 하면 됩니다.Thread.currentThread().getStackTrace()
;
바보야, 이건Thread.currentThread().getStackTrace();
Java 9에는 다음과 같은 새로운 방법이 있습니다.
public static void showTrace() {
List<StackFrame> frames =
StackWalker.getInstance( Option.RETAIN_CLASS_REFERENCE )
.walk( stream -> stream.collect( Collectors.toList() ) );
for ( StackFrame stackFrame : frames )
System.out.println( stackFrame );
}
스택 트레이스를 가져오는 중:
StackTraceElement[] ste = Thread.currentThread().getStackTrace();
인쇄 스택 트레이스(JAVA 8+):
Arrays.asList(ste).forEach(System.out::println);
인쇄 스택 트레이지(JAVA 7):
StringBuilder sb = new StringBuilder();
for (StackTraceElement st : ste) {
sb.append(st.toString() + System.lineSeparator());
}
System.out.println(sb);
을 추천합니다.
Thread.dumpStack()
이 방법이 더 쉽고 문제가 전혀 없을 경우 예외를 실제로 작성하거나 폐기할 수 있다는 장점이 있으며 훨씬 더 요점이 있습니다.
guava로 문자열링하려면:
Throwables.getStackTraceAsString(new Throwable())
stacktrace를 포함한 문자열을 반환하는 유틸리티 메서드가 있습니다.
static String getStackTrace(Throwable t) {
StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw, true);
t.printStackTrace(pw);
pw.flush();
sw.flush();
return sw.toString();
}
그리고 그냥 기록하면...
...
catch (FileNotFoundException e) {
logger.config(getStackTrace(e));
}
try {
}
catch(Exception e) {
StackTraceElement[] traceElements = e.getStackTrace();
//...
}
또는
Thread.currentThread().getStackTrace()
이걸 시도해 보세요.
catch(Exception e)
{
StringWriter writer = new StringWriter();
PrintWriter pw = new PrintWriter(writer);
e.printStackTrace(pw);
String errorDetail = writer.toString();
}
문자열 'errorDetail'에는 스택 트레이스가 포함되어 있습니다.
StackTraceElement[] stackTraceElements = Thread.currentThread().getStackTrace();
배열의 마지막 요소는 스택의 하단을 나타냅니다.이것은 시퀀스에서 가장 최근의 메서드 호출입니다.
A StackTraceElement has getClassName(), getFileName(), getLineNumber() and getMethodName().
StackTraceElement를 루프하여 원하는 결과를 얻을 수 있습니다.
for (StackTraceElement ste : stackTraceElements )
{
//do your stuff here...
}
프로세스의 현재 콜스택을 체크하려면 jstack 유틸리티를 사용할 수 있습니다.
Usage:
jstack [-l] <pid>
(to connect to running process)
jstack -F [-m] [-l] <pid>
(to connect to a hung process)
jstack [-m] [-l] <executable> <core>
(to connect to a core file)
jstack [-m] [-l] [server_id@]<remote server IP or hostname>
(to connect to a remote debug server)
Options:
-F to force a thread dump. Use when jstack <pid> does not respond (process is hung)
-m to print both java and native frames (mixed mode)
-l long listing. Prints additional information about locks
-h or -help to print this help message
위의 답변을 사용하고 포맷을 추가했습니다.
public final class DebugUtil {
private static final String SEPARATOR = "\n";
private DebugUtil() {
}
public static String formatStackTrace(StackTraceElement[] stackTrace) {
StringBuilder buffer = new StringBuilder();
for (StackTraceElement element : stackTrace) {
buffer.append(element).append(SEPARATOR);
}
return buffer.toString();
}
public static String formatCurrentStacktrace() {
StackTraceElement[] stackTrace = Thread.currentThread().getStackTrace();
return formatStackTrace(stackTrace);
}
}
현재의 스택 트레이스를 로그로 가져오고 싶은 유저에게는, 다음과 같은 것을 추천합니다.
getLogger().debug("Message", new Throwable());
건배.
이것은 오래된 포스트입니다만, 제 해결책은 다음과 같습니다.
Thread.currentThread().dumpStack();
자세한 내용과 방법은 http://javarevisited.blogspot.fr/2013/04/how-to-get-current-stack-trace-in-java-thread.html를 참조하십시오.
언급URL : https://stackoverflow.com/questions/1069066/how-can-i-get-the-current-stack-trace-in-java
'programing' 카테고리의 다른 글
폼 전송 후 화면 새로고침(Vue.js) (0) | 2022.07.11 |
---|---|
목록을 일괄적으로 분류할 수 있는 일반적인 Java 유틸리티가 있습니까? (0) | 2022.07.11 |
Vue 컴포넌트의 양방향 데이터 흐름 (0) | 2022.07.11 |
새 창에서 VueJS 구성 요소 열기 (0) | 2022.07.11 |
C 문자열의 '\0' 뒤에 있는 메모리는 어떻게 됩니까? (0) | 2022.07.11 |