- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 java 类,当前通过以下方式启动脚本
Process proc = Runtime.getRuntime().exec(" run my script");
出于特定原因,这几乎一直在运行。如果脚本由于某种原因终止,java 类就会重新启动它。
现在我需要偶尔终止该进程。因此,我决定启动一个线程,让它等待特定时间,然后终止该进程。 java 主类或其他类仍然会看到进程终止,然后重新启动它。
我不知道如何让这个线程查看进程并随后经常杀死它。关于如何创建该线程有什么建议吗?需要注意的是,我已经有一段时间没有使用线程了,所以我有点生疏了。
我的类的简单伪代码,用于了解我正在做的事情的基本概念:
Class MyClass{
Process mProc;
main(args){
do{
try{
mProc = Runtime.getRuntime().exec("cmd /C myScript");
mProc.destroy();
} catch(Exception e){
Log(e);
}
} while(true);
最佳答案
I don't know how to get this thread to see the process and the to subsequently kill it every so often.
从 Java 6 开始,这目前并不容易做到。Process
类有一个 waitFor()
方法,但它不会超时,这是悲剧性的在内部它只是调用 wait()
—— 至少在 UnixProcess
中是这样。
您可以做的(有点黑客行为)是在Process
上同步并自己调用wait(timeoutMillis)
。像这样的东西:
Process proc = new ProcessBuilder().command(commandArgs).start();
long startMillis = System.currentTimeMillis();
synchronized (proc) {
proc.wait(someTimeoutMillis);
}
long diff = System.currentTimeMillis() - startMillis;
// if we get here without being interrupted and the delay time is more than
// someTimeoutMillis, then the process should still be running
if (diff >= someTimeoutMillis) {
proc.destroy();
}
问题是存在竞争条件,如果进程在您同步 proc
之前完成,您将永远等待。另一种解决方案是在一个线程中执行 proc.waitFor() 操作,然后在超时到期后在另一个线程中中断它。
Process proc = new ProcessBuilder().command(commandArgs).start();
try {
// this will be interrupted by another thread
int errorCode = proc.waitFor();
} catch (InterruptedException e) {
// always a good pattern to re-interrupt the thread
Thread.currentThread().interrupt();
// our timeout must have expired so we need to kill the process
proc.destroy();
}
// maybe stop the timeout thread here
另一个选项是使用 proc.exitValue()
,它允许您测试进程是否已执行。不幸的是,如果它还没有完成,它不会返回 -1 或抛出 IllegalThreadStateException
的东西。
关于java线程周期性地杀死一个进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16464670/
我已经完成了创建和启动计时器的手册页。 http://man7.org/linux/man-pages/man2/timerfd_create.2.html 但是,除了 arm(start) 和 di
我正在用 opengl 编写新的代码库,很早就遇到了一个奇怪的错误。这是帧速率的明显波动,具有重复性和可预测性。 我知道它肯定与渲染的对象成正比。它也与屏幕大小成正比(不是视口(viewport)大小
我知道如何使用计算数组中点之间的欧几里得距离 scipy.spatial.distance.cdist 类似于这个问题的答案: Calculate Distances Between One Poin
我想使用 CGAL 构造周期性 3D Delaunay 三角剖分和信息(在本例中为整数)。对于 2D,如果我构造一个 vector 对(点,信息)并将其传递给三角测量函数,则效果很好。然而,非常类似的
每隔几天,我们就会收到少量 MySql 超时错误,这些错误与我们的 MySQL RDS 实例上的 CPU 和数据库连接出现大量峰值相对应。这些查询通常非常快(<5 毫秒),但突然超时。 此时,数据库操
我是一名优秀的程序员,十分优秀!