我有一个普通的 java 类,它在控制转到 JSP 页面后立即调用 JSPpage,页面本身在 Dreamweaver 中打开,但我希望它在 eclipse 中使用其默认浏览器打开。我怎样才能做到这一点?
这是我的代码:
String htmlFilePath = "WebContent/raja.
File htmlFile = new File(htmlFilePath);
Desktop.getDesktop().browse(htmlFile.toURI());
Desktop.getDesktop().open(htmlFile);