通过 ActionReporter.setWriter(....) 配置一个自己的 Writer 实现,将这些信息输出到文件里面即可,大至如下: public class MyWriter extends Writer { public void write(String str) throws IOException { // 这里放上输出到文件的代码 }
public void write(char[] cbuf, int off, int len) throws IOException {} public void flush() throws IOException {} public void close() throws IOException {} }