当前位置:  开发笔记 > 编程语言 > 正文

如何从插件将超链接写入Eclipse控制台

如何解决《如何从插件将超链接写入Eclipse控制台》经验,为你挑选了1个好方法。

我想将文件的位置作为超链接写入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。

任何帮助表示赞赏。



1> Benjamin..:

好吧,事实证明我写的代码很好,除了实际上应该进行的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),该偏移量从控制台输出的开始算起。您为什么还要自己计算一下,但这是另一个讨论。

推荐阅读
小色米虫_524
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有