我在eclipse中写了一个插件。我在向导中创建了一个新项目,完成后,我有这样的结构:
My Project
-> src
--> index.html
我想用内部网络浏览器打开index.html,双击后加载地址"http://abc:8000"
。我怎么能通过代码来做到这一点?
答案 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>