如何在Node Webkit中运行外部exe?

时间:2015-12-09 08:36:06

标签: node.js webkit exe node-webkit

我使用Node Webkit作为我的网络应用程序,我真的是使用node webkit的新手。我想在我的应用程序中运行我的exe,但我甚至无法使用' child_process'打开简单的记事本。我在网站上看到了一些例子,但我发现很难运行notepad.exe,请提前帮助并非常感谢。

var execFile = require 
('child_process').execFile, child;

child = execFile('C:\Windows\notepad.exe',
function(error,stdout,stderr) { 
if (error) {
            console.log(error.stack); 
            console.log('Error code: '+ error.code); 
            console.log('Signal received: '+ 
            error.signal);
           } 
console.log('Child Process stdout: '+ stdout);
console.log('Child Process stderr: '+ stderr);
 }); 
child.on('exit', function (code) { 
console.log('Child process exited '+
'with exit code '+ code);
});

此外,我尝试使用meadco-neptune插件运行exe并添加插件我将代码放在package.json文件中,但它显示无法加载插件。我的package.json文件是这样的

 {
   "name": "sample",
   "version": "1.0.0",
   "description": "",
   "main": "index.html",
   "window": {
   "toolbar": false,
   "frame": false,
   "resizable": false,
   "show": true,

   "title": " example"
             },
   "webkit": {
   "plugin": true
             },
    "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
             },
    "author": "xyz",
    "license": "ISC"
 }

1 个答案:

答案 0 :(得分:5)

在node.js中,有两种方法可以使用标准模块child_process启动外部程序:execspawn

使用exec时,外部程序退出时会收到stdout和stderror信息。数据只返回node.js,正如Mi Ke Bu在评论中正确指出的那样。

但是如果你想以交互方式接收来自外部程序的数据(我怀疑你不打算启动notepad.exe),你应该使用另一种方法 - spawn

考虑一下这个例子:

var spawn = require('child_process').spawn,
    child    = spawn('C:\\windows\\notepad.exe', ["C:/Windows/System32/Drivers/etc/hosts"]);

child.stdout.on('data', function (data) {
  console.log('stdout: ' + data);
});

child.stderr.on('data', function (data) {
  console.log('stderr: ' + data);
});

child.on('close', function (code) {
  console.log('child process exited with code ' + code);
});

此外,您需要在路径名中使用双向反斜杠:C:\\Windows\\notepad.exe,否则您的路径将被评估为
C:windows notepad.exe (带换行符)当然不存在。

或者您可以使用正斜杠,例如示例中的命令行参数。