如何从 Java 小程序打开和关闭浏览器窗口?

发布于 2024-07-15 20:21:37 字数 324 浏览 1 评论 0原文

我想在 Google.com 上打开一个新窗口,但稍后关闭该窗口。 我当前的代码如下:

link="http://www.google.com"

try
{
    AppletContext a = getAppletContext();
    URL url = new URL(link);
    a.showDocument(url,"_blank");
}
catch (MalformedURLException e)
{
    System.out.println( e.getMessage() );
}

这会打开窗口,但稍后如何关闭它?

I would like to open a new window at Google.com, but then later close that window. My current code is as follows:

link="http://www.google.com"

try
{
    AppletContext a = getAppletContext();
    URL url = new URL(link);
    a.showDocument(url,"_blank");
}
catch (MalformedURLException e)
{
    System.out.println( e.getMessage() );
}

This opens the window, but how do I close it later?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉南桥 2024-07-22 20:21:37

我建议使用 JSObject 接口调用浏览器来打开窗口。 然后你可以获取新窗口的变量并使用它来关闭它。

更多文档:

I'd suggest using the JSObject interface to call into the browser for opening the windows. Then you can get the variable of the new window and use that to close it.

More documentation:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文