开发者

How to open a External browser in Eclipse Editor

开发者 https://www.devze.com 2023-03-28 05:13 出处:网络
How to open an External browser like 开发者_运维问答Safari from open option with in Eclipse plugin programmaticly?try {

How to open an External browser like 开发者_运维问答Safari from open option with in Eclipse plugin programmaticly?


try {
    PlatformUI.getWorkbench().getBrowserSupport().getExternalBrowser().openURL(new URL("http://stackoverflow.com"));
} catch (PartInitException | MalformedURLException e) {
    e.printStackTrace();
}

This will open the external browser.

0

精彩评论

暂无评论...
验证码 换一张
取 消