gpt4 book ai didi

java - 想要在代码中打开 eclipse xml 文件并引用其 IFile 导航到特定行号

转载 作者:行者123 更新时间:2023-11-30 04:35:47 26 4
gpt4 key购买 nike

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

最佳答案

假设您知道文件的 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();

当然,您还需要捕获/抛出一些异常,但为了简单起见,我在这里省略了这一点。

关于java - 想要在代码中打开 eclipse xml 文件并引用其 IFile 导航到特定行号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13556957/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com