vote up 6 vote down star
1

Is there a way to get the name of the currently executing method in Java?

flag

66% accept rate

2 Answers

vote up 8 vote down check

Thread.currentThread().getStackTrace() will usually contain the method you’re calling it from but there are pitfalls.

Some virtual machines may, under some circumstances, omit one or more stack frames from the stack trace. In the extreme case, a virtual machine that has no stack trace information concerning this thread is permitted to return a zero-length array from this method.

link|flag
Is this same pitfall true for stack traces in exceptions? – drhorrible Mar 3 at 19:15
vote up 8 vote down

a full code would be (to use with with Bombe's caveat in mind):

  /**
   * Get the method name for a depth in call stack. <br />
   * Utility function
   * @param depth depth in the call stack (0 means current method, 1 means call method, ...)
   * @return method name
   */
  public static String getMethodName(final int depth)
  {
    final StackTraceElement[] ste = Thread.currentThread().getStackTrace();

    //System. out.println(ste[ste.length-depth].getClassName()+"#"+ste[ste.length-depth].getMethodName());
    return ste[ste.length - depth].getMethodName();
  }

More in this question.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.