我们如何在java中将行号打印到日志中

问题描述 投票:125回答:19

如何将行号打印到日志中。假设在向日志输出一些信息时,我还想打印输出在源代码中的行号。正如我们在堆栈跟踪中看到的那样,它显示发生异常的行号。异常对象上有堆栈跟踪。

其他替代方案可以是在打印到日志时手动包括行号。还有其他方法吗?

java logging
19个回答
96
投票

来自Angsuman Chakraborty

/** Get the current line number.
 * @return int - Current line number.
 */
public static int getLineNumber() {
    return Thread.currentThread().getStackTrace()[2].getLineNumber();
}

0
投票

如果它已被编译为发布,则无法实现。您可能希望查看类似Log4J的内容,它会自动为您提供足够的信息,以确定记录代码发生的位置。


0
投票

首先是一般方法(在实用程序类中,在普通的旧java 1.4代码中,你可能需要为java 1.5及更高版本重写它)

/**
 * Returns the first "[class#method(line)]: " of the first class not equal to "StackTraceUtils" and aclass. <br />
 * Allows to get past a certain class.
 * @param aclass class to get pass in the stack trace. If null, only try to get past StackTraceUtils. 
 * @return "[class#method(line)]: " (never empty, because if aclass is not found, returns first class past StackTraceUtils)
 */
public static String getClassMethodLine(final Class aclass)  {
    final StackTraceElement st = getCallingStackTraceElement(aclass);
    final String amsg = "[" + st.getClassName() + "#" + st.getMethodName() + "(" + st.getLineNumber()
    +")] <" + Thread.currentThread().getName() + ">: ";
    return amsg;
}

然后使用特定的实用方法来获取正确的stackElement:

/**
   * Returns the first stack trace element of the first class not equal to "StackTraceUtils" or "LogUtils" and aClass. <br />
   * Stored in array of the callstack. <br />
   * Allows to get past a certain class.
   * @param aclass class to get pass in the stack trace. If null, only try to get past StackTraceUtils. 
   * @return stackTraceElement (never null, because if aClass is not found, returns first class past StackTraceUtils)
   * @throws AssertionFailedException if resulting statckTrace is null (RuntimeException)
   */
  public static StackTraceElement getCallingStackTraceElement(final Class aclass) {
    final Throwable           t         = new Throwable();
    final StackTraceElement[] ste       = t.getStackTrace();
    int index = 1;
    final int limit = ste.length;
    StackTraceElement   st        = ste[index];
    String              className = st.getClassName();
    boolean aclassfound = false;
    if(aclass == null) {
        aclassfound = true;
    }
    StackTraceElement   resst = null;
    while(index < limit) {
        if(shouldExamine(className, aclass) == true) {
            if(resst == null) {
                resst = st;
            }
            if(aclassfound == true) {
                final StackTraceElement ast = onClassfound(aclass, className, st);
                if(ast != null) {
                    resst = ast;
                    break;
                }
            }
            else
            {
                if(aclass != null && aclass.getName().equals(className) == true) {
                    aclassfound = true;
                }
            }
        }
        index = index + 1;
        st        = ste[index];
        className = st.getClassName();
    }
    if(isNull(resst))  {
        throw new AssertionFailedException(StackTraceUtils.getClassMethodLine() + " null argument:" + "stack trace should null"); //$NON-NLS-1$
    }
    return resst;
  }

  static private boolean shouldExamine(String className, Class aclass) {
      final boolean res = StackTraceUtils.class.getName().equals(className) == false && (className.endsWith(LOG_UTILS
        ) == false || (aclass !=null && aclass.getName().endsWith(LOG_UTILS)));
      return res;
  }

  static private StackTraceElement onClassfound(Class aclass, String className, StackTraceElement st) {
      StackTraceElement   resst = null;
      if(aclass != null && aclass.getName().equals(className) == false)
      {
          resst = st;
      }
      if(aclass == null)
      {
          resst = st;
      }
      return resst;
  }

0
投票

这是我们使用的记录器。

它包装Android Logger并显示类名,方法名和行号。

http://www.hautelooktech.com/2011/08/15/android-logging/


0
投票

看看this link。在该方法中,当您双击LogCat的行时,您可以跳转到您的行代码。

您也可以使用此代码获取行号:

public static int getLineNumber()
{
    int lineNumber = 0;
    StackTraceElement[] stackTraceElement = Thread.currentThread()
            .getStackTrace();
    int currentIndex = -1;
    for (int i = 0; i < stackTraceElement.length; i++) {
        if (stackTraceElement[i].getMethodName().compareTo("getLineNumber") == 0)
        {
            currentIndex = i + 1;
            break;
        }
    }

    lineNumber = stackTraceElement[currentIndex].getLineNumber();

    return lineNumber;
}

0
投票
private static final int CLIENT_CODE_STACK_INDEX;

static {
    // Finds out the index of "this code" in the returned stack Trace - funny but it differs in JDK 1.5 and 1.6
    int i = 0;
    for (StackTraceElement ste : Thread.currentThread().getStackTrace()) {
        i++;
        if (ste.getClassName().equals(Trace.class.getName())) {
            break;
        }
    }
    CLIENT_CODE_STACK_INDEX = i;
}

private String methodName() {
    StackTraceElement ste=Thread.currentThread().getStackTrace()[CLIENT_CODE_STACK_INDEX+1];
    return ste.getMethodName()+":"+ste.getLineNumber();
}

0
投票

这些都可以获得当前线程和方法的行号,如果你使用try catch来预期异常,那么这些行号很有效。但是如果你想捕获任何未处理的异常,那么你使用默认的未捕获异常处理程序,当前线程将返回处理函数的行号,而不是抛出异常的类方法。而不是使用Thread.currentThread()只需使用异常处理程序传入的Throwable:

Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
            public void uncaughtException(Thread t, Throwable e) {              
                if(fShowUncaughtMessage(e,t))               
                    System.exit(1);
            }
        });

在上面使用你的处理函数(fShowUncaughtMessage)中的e.getStackTrace()[0]来获取罪犯。


0
投票

下面的代码是测试日志行的代码,没有调用日志记录方法的类名和方法名

public class Utils {
/*
 * debug variable enables/disables all log messages to logcat
 * Useful to disable prior to app store submission
 */
public static final boolean debug = true;

/*
 * l method used to log passed string and returns the
 * calling file as the tag, method and line number prior
 * to the string's message
 */
public static void l(String s) {
    if (debug) {
        String[] msg = trace(Thread.currentThread().getStackTrace(), 3);
        Log.i(msg[0], msg[1] + s);
    } else {
        return;
    }
}

/*
 * l (tag, string)
 * used to pass logging messages as normal but can be disabled
 * when debug == false
 */
public static void l(String t, String s) {
    if (debug) {
        Log.i(t, s);
    } else {
        return;
    }
}

/*
 * trace
 * Gathers the calling file, method, and line from the stack
 * returns a string array with element 0 as file name and 
 * element 1 as method[line]
 */
public static String[] trace(final StackTraceElement e[], final int level) {
    if (e != null && e.length >= level) {
        final StackTraceElement s = e[level];
        if (s != null) { return new String[] {
                e[level].getFileName(), e[level].getMethodName() + "[" + e[level].getLineNumber() + "]"
        };}
    }
    return null;
}
}

0
投票

stackLevel取决于您称之为此方法的深度。您可以尝试从0到大数,看看有什么区别。

如果stackLevel合法,你会得到像java.lang.Thread.getStackTrace(Thread.java:1536)这样的字符串

public static String getCodeLocationInfo(int stackLevel) {
        StackTraceElement[] stackTraceElements = Thread.currentThread().getStackTrace();
        if (stackLevel < 0 || stackLevel >= stackTraceElements.length) {
            return "Stack Level Out Of StackTrace Bounds";
        }
        StackTraceElement stackTraceElement = stackTraceElements[stackLevel];
        String fullClassName = stackTraceElement.getClassName();
        String methodName = stackTraceElement.getMethodName();
        String fileName = stackTraceElement.getFileName();
        int lineNumber = stackTraceElement.getLineNumber();

        return String.format("%s.%s(%s:%s)", fullClassName, methodName, fileName, lineNumber);
}

0
投票

这正是我在这个lib XDDLib中实现的功能。 (但是,这是为Android)

Lg.d("int array:", intArrayOf(1, 2, 3), "int list:", listOf(4, 5, 6))

单击带下划线的文本以导航到log命令所在的位置

StackTraceElement由该库外的第一个元素决定。因此,这个lib之外的任何地方都是合法的,包括lambda expressionstatic initialization block等。


-1
投票

我的方式对我有用

String str = "select os.name from os where os.idos="+nameid;  try {
        PreparedStatement stmt = conn.prepareStatement(str);
        ResultSet rs = stmt.executeQuery();
        if (rs.next()) {
            a = rs.getString("os.n1ame");//<<<----Here is the ERROR          
        }
        stmt.close();
  } catch (SQLException e) {
        System.out.println("error line : " + e.getStackTrace()[2].getLineNumber());            
        return a;
  }

71
投票

我们最终在Android工作中使用了这样的自定义类:

import android.util.Log;    
public class DebugLog {
 public final static boolean DEBUG = true;    
 public static void log(String message) {
  if (DEBUG) {
    String fullClassName = Thread.currentThread().getStackTrace()[2].getClassName();
    String className = fullClassName.substring(fullClassName.lastIndexOf(".") + 1);
    String methodName = Thread.currentThread().getStackTrace()[2].getMethodName();
    int lineNumber = Thread.currentThread().getStackTrace()[2].getLineNumber();

    Log.d(className + "." + methodName + "():" + lineNumber, message);
  }
 }
}

-1
投票

你可以使用 - > Reporter.log(“”);


33
投票

快速而肮脏的方式:

System.out.println("I'm in line #" + 
    new Exception().getStackTrace()[0].getLineNumber());

有一些更多细节:

StackTraceElement l = new Exception().getStackTrace()[0];
System.out.println(
    l.getClassName()+"/"+l.getMethodName()+":"+l.getLineNumber());

这将输出如下内容:

com.example.mytest.MyClass/myMethod:103

24
投票

我不得不回答你的问题而回答。我假设您正在寻找仅用于支持调试的行号。有更好的方法。获得当前线路的方法有很多。我所看到的都很慢。最好使用java.util.logging包或log4j中的日志框架。使用这些程序包,您可以配置日志记录信息,以将上下文包含在类名中。然后每条日志消息都足够独特,以便知道它来自何处。因此,您的代码将具有您通过其调用的“记录器”变量

logger.debug("a really descriptive message")

代替

System.out.println("a really descriptive message")


14
投票

Log4J允许您将行号作为其输出模式的一部分。有关如何执行此操作的详细信息,请参阅http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/PatternLayout.html(转换模式中的关键元素为“L”)。但是,Javadoc确实包含以下内容:

警告生成呼叫者位置信息非常慢。除非执行速度不是问题,否则应该避免使用它。


7
投票

@ simon.buchan发布的代码将有效...

Thread.currentThread().getStackTrace()[2].getLineNumber()

但是如果你在一个方法中调用它,它将始终返回方法中行的行号,所以请使用内联代码片段。


7
投票

我使用这个小方法输出调用它的方法的跟踪和行号。

 Log.d(TAG, "Where did i put this debug code again?   " + Utils.lineOut());

双击输出转到该源代码行!

您可能需要根据放置代码的位置调整级别值。

public static String lineOut() {
    int level = 3;
    StackTraceElement[] traces;
    traces = Thread.currentThread().getStackTrace();
    return (" at "  + traces[level] + " " );
}

6
投票

我建议使用日志工具包,如log4j。日志记录可在运行时通过属性文件进行配置,您可以打开/关闭行号/文件名记录等功能。

查看PatternLayout的javadoc为您提供了完整的选项列表 - 您所追求的是%L。


0
投票

您不能保证与代码的行号一致性,特别是如果它是为了发布而编译的话。我不建议为此目的使用行号,最好给出引发异常的地方的有效载荷(简单的方法是设置消息以包括方法调用的细节)。

您可能希望将异常丰富视为一种改进异常处理http://tutorials.jenkov.com/java-exception-handling/exception-enrichment.html的技术

© www.soinside.com 2019 - 2024. All rights reserved.