我通过其IFile实例在eclipse IDE中引用了一个xml文件。我知道想在我的视图上添加一个操作,在xml编辑器中打开文件并导航到特定的行号。任何人对如何解决这个问题都有任何想法?
答案 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();
当然你也需要捕捉/抛出一些例外,但为了简单起见,我在这里省略了这一点。