我想将文件的位置作为超链接写入 Eclipse 控制台。当您单击它时,它应该在 eclipse 中打开该文件。我目前正在做这样的事情(但链接不显示)
console = new MessageConsole("myconsole", null);
console.activate();
ConsolePlugin.getDefault().getConsoleManager().addConsoles(new IConsole[]{ console });
IPath path = Path.fromOSString(filePath);
IFile file = ResourcesPlugin.getWorkspace().getRoot().getFileForLocation(path);
FileLink fileLink = new FileLink(file, null, 0, 0, 0);
console.addHyperlink(fileLink, 0, 0);
我可能不应该为偏移量、文件长度参数等传入 0。
任何帮助表示赞赏。