设置双击以使用浏览器在工作区资源上打开文件?

时间:2014-08-13 02:46:09

标签: eclipse-plugin eclipse-rcp

我在eclipse中写了一个插件。我在向导中创建了一个新项目,完成后,我有这样的结构:

My Project
   -> src
     --> index.html

我想用内部网络浏览器打开index.html,双击后加载地址"http://abc:8000"。我怎么能通过代码来做到这一点?

1 个答案:

答案 0 :(得分:0)

我认为它与eclipse插件编码无关。

默认情况下,只有在eclipse中才会在内部网络浏览器中打开html文件,除非您更改Windows > Preferences > General > Editors > File Association中的设置。

像这样编辑index.html:

使用 onload attibute并设置窗口位置

<html> <header><title>This is title</title></header> <body onload="window.location='http://google.co.in'"> Hello world </body> </html>