0
String[] cmd = { "node", "/Users/pramod/Desktop/sample.js"};
Runtime r = Runtime.getRuntime();
Process p = null;
p = r.exec(cmd);
このコードをJavaプログラムで実行しようとすると、例外が発生します。Runtime.getRuntime()でスクリプトを実行できません。exec()
Exception in thread "main" java.io.IOException: Cannot run program "node": error=2, No such file or directory
私は同じことをしましたが、助けてくれてありがとう –