nodejs 调用进程

2021/5/14 7:28:56

本文主要是介绍nodejs 调用进程,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

#include <iostream>
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
    cout<<_T("输入一行---->")<<endl;
    char str[30];
    cin.getline(str, 30);
    cout << str << endl;
    cout << "输入第2行---->" << endl;
    cin.getline(str, 30);
    cout << str << endl;
    cout << "输入第3行---->" << endl;
    cin.getline(str, 30);
    cout << str << endl;
    return 0;
}

参考

https://www.imooc.com/wenda/detail/528299

调用通讯

var cp = require('child_process');
  //spawn
  var ls = cp.spawn('ConsoleApplication1.exe'/*command*/, [/*'3s.mp4']*//*args*/, {}/*options, [optional]*/);
  ls.stdout.on('data', function (data) {
    console.log('stdout: ' + data);
    ls.stdin.write('1112 4\n'); 
  });
 
  ls.stderr.on('data', function (data) {
    console.log('stderr: ' + data);
  });
 
  ls.on('exit', function (code) {
    console.log('child process exited with code ' + code);
  });

 



这篇关于nodejs 调用进程的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程