想要在代码中打开eclipse xml文件,并参考其IFile导航到特定的行号

时间:2012-11-26 00:02:33

标签: java eclipse eclipse-plugin eclipse-pde

我通过其IFile实例在eclipse IDE中引用了一个xml文件。我知道想在我的视图上添加一个操作,在xml编辑器中打开文件并导航到特定的行号。任何人对如何解决这个问题都有任何想法?

1 个答案:

答案 0 :(得分:2)

假设您知道文件的网址:

IWorkbenchPage page = activeWorkbenchPage();
if (page == null) {
    throw new RuntimeException();
}

IFile file;
IFile[] files = ResourcesPlugin.getWorkspace().getRoot()
            .findFilesForLocationURI(url.toURI());
file = files[0];

IMarker marker;
marker = file.createMarker(IMarker.TEXT);
HashMap<String, Object> map = new HashMap<String, Object>();
map.put(IMarker.LINE_NUMBER, lineNumber);
marker.setAttributes(map);
IDE.openEditor(page, marker);
marker.delete();

当然你也需要捕捉/抛出一些例外,但为了简单起见,我在这里省略了这一点。