我正在使用此节点js代码来运行包含无限循环的App.exe文件。我传递输入并从App.exe获取输出。
var bat = null;
app.post("/api/run", function(req, res) {
if(req.body.success) {
if(bat) bat.kill();
}
if(!bat) {
bat = spawn('cmd.exe', ['/c App.exe']);
bat.stderr.on('data', function (data) {
res.end(JSON.stringify({error: true, message: data.toString()}));
});
bat.on('exit', function (code) {
bat = null;
console.log('Child exited with code ' + code);
res.end(JSON.stringify({error: false, message: "Application Closed!"}));
});
}
bat.stdin.write(req.body.input+'\n');
bat.stdout.once('data', function (data) {
console.log(data.toString());
res.end(JSON.stringify({error: false, message: data.toString()}));
});
});
问题是,当我杀死子进程时成功子进程被杀死但App.exe仍在运行。我有办法阻止App.exe运行
答案 0 :(得分:2)
而不是产生cmd.exe
产生App.exe
,而不是直接产生后者:
bat = spawn('App.exe');
答案 1 :(得分:0)