2013-11-04 470 views
19

我不知道如何執行exe文件node.js。這是我正在使用的代碼。它不工作,不打印任何東西。是否有任何可能的方法使用命令行執行exe文件?使用node.js執行exe文件

var fun = function() { 
    console.log("rrrr"); 
    exec('CALL hai.exe', function(err, data) { 

    console.log(err) 
    console.log(data.toString()); 
    }); 
} 
fun(); 

回答