アプリケーション ログで見つかったすべてのエラー エントリのレポートを表示するログ フィルター アプリケーションを作成しています。各エラーと共にスタック トレースの数行を表示する最善の方法は何かと考えていました。
最終結果は次のようになります。
+ ErrorA
- ErrorB
com.package.Class.method(Class.java:666)
com.package.AnotherClass.ADifferentMethodMethod(Class.java:2012)
com.thatOtherPackage.ThatClass.someOtherMethod(ThatClass.java:34)
+ ErrorC
これが私がこれまでに持っているものです:
public JSONArray processFiles(File[] files){
FileReader fr = null;
BufferedReader br = null;
JSONObject jFiles = new JSONObject();
JSONArray jaf = new JSONArray();
try {
for (File file : files) {
jFiles.put("fileName", file.getName());
boolean fileIsOk = true;
try {
fr = new FileReader(file);
} catch (FileNotFoundException e) {
//Thanks to Windows, there's no way to check file.canRead()
//http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6203387
fileIsOk = false;
}
if(fileIsOk) {
br = new BufferedReader(fr);
String line = null;
JSONObject jLogEntries = new JSONObject();
JSONArray jalog = new JSONArray();
int lineNum = 0;
while ((line = br.readLine()) != null) {
if (line.contains("| ERROR |")) {
jLogEntries.put("line " + lineNum, line);
++lineNum;
}
**// TODO: Implement something to print the next 5 lines of the stack trace.**
}
lineNum = 0;
jalog.add(jLogEntries);
jFiles.put("logEntries", jalog);
jaf.add(jFiles);
}
}// end of files iteration
} catch (IOException e) {
e.printStackTrace();
} catch (Exception e){
e.printStackTrace();
}
return jaf;
}