gpt4 book ai didi

java - 让java gui在网络浏览器中打开网页

转载 作者:IT老高 更新时间:2023-10-28 20:55:09 25 4
gpt4 key购买 nike

我正在尝试获取一个 java gui 来打开一个网页。所以 gui 运行一些代码,然后生成一个 html 文件。然后,我希望该文件在创建后立即在 Web 浏览器(最好是 Firefox)中打开。我该怎么做呢?

最佳答案

如果您使用的是 Java 6 或更高版本,请参阅 Desktop API,特别是 browse .像这样使用它(未测试):

// using this in real life, you'd probably want to check that the desktop
// methods are supported using isDesktopSupported()...

String htmlFilePath = "path/to/html/file.html"; // path to your new file
File htmlFile = new File(htmlFilePath);

// open the default web browser for the HTML page
Desktop.getDesktop().browse(htmlFile.toURI());

// if a web browser is the default HTML handler, this might work too
Desktop.getDesktop().open(htmlFile);

关于java - 让java gui在网络浏览器中打开网页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/602032/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com