私は以下に示すようにこのプログラムを持っていますが、現在はスタックトレースのみを出力しています。私の質問は、スタック トレースとカスタム フィールドを取得することは可能かということです。ここでは、1090099 が必要です。
可能か教えてください??
package com;
import org.apache.log4j.Logger;
public class Test {
private static final Logger logger = Logger.getLogger(Test.class);
public static void main(String args[]) {
try {
String accountid = "1090099";
String desc = null;
System.out.println(desc.toUpperCase());
}
catch (Exception t)
{
logger.fatal("Exception inside the Test program ", t);
}
}
}
2013-06-26 21:44:29,723[main] FATAL(Test.java:<main>:16)- Exception inside the Test program
java.lang.NullPointerException
at com.Test.main(Test.java:12)