使用child_process从meteor运行jar文件

时间:2015-02-21 20:30:27

标签: jar meteor npm child-process

我试图通过child_process.spawn运行一个jar,我一直得到"错误:无法访问jarfile jar名称" - 这是我的代码:

var spawn = Meteor.npmRequire('child_process').spawn;

function Server(){
        var serverProcess = spawn('java', [
                '-Xmx512M',
                '-Xms256M',
                '-jar',
                'jarname', //The name of the jar I'm trying to load - doesn't work with/without .jar at the end
                'nogui'
        ]);
}
Meteor.methods({
    'CommandStartServer': function(){
        Server();
    }
});

我的问题是:如果我想将jar文件放在私人文件夹中,如何在spawn()中引用jar文件路径/名称?

流星很新,所以感谢帮助,谢谢!

0 个答案:

没有答案