java kill 进程 时间_Java Process destroy方法kill进程,返回码测试

Java代码:

package com.spiro;

import java.io.IOException;

public class Main {

public static void main(String[] args) {

String command = args[0];

System.out.println("Running command [" + command + "]");

try {

final Process process = Runtime.getRuntime().exec(command);

Thread t1 = new Thread() {

@Override

public void run() {

try {

int exitCode = process.waitFor();

System.out.println("Process exit with code [" + exitCode + "]");

} catch (InterruptedException e) {

e.printStackTrace();

}

}

};

Thread t2 = new Thread() {

@Override

public void run() {

System.out.println("Waiting 2 seconds.");

try {

Thread.sleep(2000L);

} catch (InterruptedException e) {

e.printStackTrace();

}

process.destroy();

System.out.println("Process destroyed");

}

};

t1.start();

t2.start();

} catch (IOException e) {

e.printStackTrace();

}

}

}

测试shell脚本:

#!/bin/sh

echo "abc--1"

sleep 3s

echo "abc--2"

sleep 3s

echo "abc--3"

执行:

java com.spiro.Main "sh /tmp/test.sh"

结果:

Running command [sh /tmp/test.sh]

Waiting 2 seconds.

Process destroyed

Process exit with code [143]

总结

通过 destroy 方法可以kill进程,并可以得到非0得返回码

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值