我通过其 IFile 实例引用了 Eclipse IDE 中的 xml 文件。我知道想在我的视图上添加一个操作,在 xml 编辑器中打开文件并导航到特定的行号。有人对如何解决这个问题有任何想法吗?
问问题
554 次
1 回答
2
假设您知道文件的 URL:
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();
当然,您还需要捕获/抛出一些异常,但为了简单起见,我在这里省略了这一点。
于 2012-11-26T11:54:19.587 回答