如何从 Java 小程序打开和关闭浏览器窗口?
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用 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: