var child = exec('java -jar entrance.jar', (error, stdout, stderr) => {
// console.log("1111");
const data = stdout;
console.log('stdout: ' + stdout);
console.log('stderr: ' + stderr);
if(error !== null){
console.log('exec error: ' + error);
}
});
当后缀为.jar
时,没有一点日志我什么也没得到。
没有后缀.jar
时,出现以下错误:
stdout:
stderr:Error: Unable to access jarfile
enter image description here
请帮助我〜