gpt4 book ai didi

java - 按进程划分的浏览器关闭事件

转载 作者:行者123 更新时间:2023-11-30 17:40:55 25 4
gpt4 key购买 nike

我正在使用 Process 打开 Internet Explorer 或任何其他浏览器,然后我想进入无限循环直到浏览器关闭,这样:

Process p = Runtime.getRuntime().exec(
"C:\\Program Files\\Internet Explorer\\iexplore.exe");
while(true)
{
if(p.browserclosed)
break;
}

任何人都可以帮助我处理这个事件,以便我知道浏览器何时关闭,或者还有其他方法吗?将来我将转到浏览器上的一个特定 JSP。

最佳答案

在这种情况下,我会使用 waitFor 方法。

摘录:

Causes the current thread to wait, if necessary, until the process represented by this Process object has terminated.

完整引用:http://docs.oracle.com/javase/7/docs/api/java/lang/Process.html#waitFor%28%29

关于java - 按进程划分的浏览器关闭事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21109868/

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