如何使用Java打开HTML文件?

我尝试通过Java程序从本地(在我的系统中)打开HTML文件。我尝试了一些通过堆栈溢出获得的程序,但是它不能正常工作。

我有这个小的HTML文件。

<html>

<head>

Test Application

</head>

<body>

This is test application

</body>

</html>

Runtime rTime = Runtime.getRuntime();

String url = "D:/hi.html";

String browser = "C:/Program Files/Internet Explorer/iexplore.exe ";

Process pc = rTime.exec(browser + url);

pc.waitFor();

任何解决方案或技巧表示赞赏。

回答:

我希望使用默认浏览器

File htmlFile = new File(url);

Desktop.getDesktop().browse(htmlFile.toURI());

以上是 如何使用Java打开HTML文件? 的全部内容, 来源链接: utcz.com/qa/431939.html

回到顶部