Eclipse中的搜索结果断点

时间:2015-03-30 00:12:06

标签: java eclipse

我想通过在搜索结果上放置一个断点来调试我的程序。

由于我有~1000场比赛,我希望有一种简单快捷的方法。

1 个答案:

答案 0 :(得分:2)

您可以做的是生成包含您需要的所有断点的Eclipse xml文件。

右键点击断点选项卡,然后选择Expoert Breakpoints...

保存文件,以编程方式编辑,然后将其导回。

用于编写此类文件的简单示例:

    Map<String, Integer> breakPointsLocation = new HashMap<>();
    // some logic to fill this hashmap based on your search results (you can use grep)

    // header
    System.out.println("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
    System.out.println("<breakpoints>");
    for (Entry<String, Integer> entry: breakPointsLocation.entrySet())
    {
        System.out.println("<breakpoint enabled=\"true\" persistant=\"true\" registered=\"true\">");
        System.out.println("<resource path=\"" + entry.getKey() + "\" type=\"1\"/>");
        System.out.println("<marker charStart=\"1317\" lineNumber=\"" + entry.getValue() + "\" type=\"org.eclipse.jdt.debug.javaLineBreakpointMarker\">");
        System.out.println("<attrib name=\"charStart\" value=\"1317\"/>");
        // add some more attrbiutes here
        System.out.println("</marker>");
        System.out.println("</breakpoint>");
    } 

    //footer
    System.out.println("</breakpoints>");