我可以使用eclipse调试器将变量写入文件

时间:2016-10-06 12:13:06

标签: eclipse debugging

是否可以创建某种"跟踪断点"在eclipse中,Eclipse将在"断点"中记录我选择的变量。没有暂停应用程序被击中?

1 个答案:

答案 0 :(得分:2)

不确定。对于此示例方法:

public static void logArgs(final String one, final String two) {
    System.out.println(one + two);
}

将断点放入其中,右键单击它并编辑Breakpoint properties...,如示例中所示。重要的复选框是ConditionalSuspend when 'true'。只需返回false,以便断点根本不会暂停。

java.io.FileWriter w = new java.io.FileWriter("/tmp/file.txt", true);
w.write(String.format("args(%s, %s)%n"), one, two));
w.close();
return false;

enter image description here