我如何在JavaMail会话上setDebug(true)
捕获流并在我的日志记录框架中使用它? (没有下载源代码,更改方法以接受流作为参数,重新编译它,...)
更一般地说,Java中是否存在以这种方式“劫持和重定向”通用流输出的标准方法?请注意,System.out可能已被其他输出污染,我不知道如何“过滤”...
答案 0 :(得分:10)
您可以将PrintStream链接到ByteArrayOutputStream,告诉JavaMail使用您的PrintStream,执行JavaMail的操作,最后将ByteArrayOutputStream的内容转储到您最喜欢的记录器。
ByteArrayOutputStream os = new ByteArrayOutputStream();
PrintStream ps = new PrintStream(os);
Session mailSession = Session.getDefaultInstance(props, null);
try {
if (MAIL_DEBUG) {
logger.info("JAVAMAIL debug mode is ON");
mailSession.setDebugOut(ps);
mailSession.setDebug(true);
}
...
transport.close();
if (MAIL_DEBUG) {
logger.info(os);
}
}
finally {
ps.close();
os.close();
}