我想将文件的位置作为超链接写入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。
任何帮助表示赞赏。
好吧,事实证明我写的代码很好,除了实际上应该进行的2次小改动
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, -1, -1, -1); console.addHyperlink(fileLink, 10, 5);
我有点惊讶必须提供偏移量(10),该偏移量从控制台输出的开始算起。您为什么还要自己计算一下,但这是另一个讨论。