1

我有一个 Eclipse 插件,它的扩展名为:

<extension
         point="org.eclipse.help.contexts">
      <contexts
            file="contexts.xml"
            plugin="my.plugin.id">
      </contexts>
   </extension>

contexts.xml有:

<contexts>
   <context id="test_context" title="About Contexts">
      <description>This is written by me.</description>
      <topic href="http://www.google.com" label="Search about me" />
   </context>
</contexts>

我将其用作:

PlatformUI.getWorkbench().getHelpSystem().setHelp(parent, "my.plugin.id.test_context");

在主题 href 我如何使用位于系统中的 html 文件。?:like 它在 C:/test 中?我试过了

href="C:/test/t.html" label="Search about me"/>

我也尝试在href中使用\而不是/,但仍然没有用。似乎它只需要工作区中的 html 文件!任何解决方法?

4

1 回答 1

0

我在项目中创建了一个中间 html 文件,然后我使用 eclipse 帮助 javascript 文件调用了外部 html 文件。

于 2014-02-04T11:29:51.930 回答