admin管理员组文章数量:1347712
I have to execute some bash shell mands from Java using nashorn.
I have a javascript file:
#!/usr/bin/jjs
var testBashMethod = function(name){
$EXEC("echo Hello from bash ${name}");
};
testBashMethod("foobar");
I have java method loading the above javascript method into Nashorn engine and executing it:
public void executeScript(){
ScriptEngineManager engineManager = new ScriptEngineManager();
ScriptEngine engine = engineManager.getEngineByName("nashorn");
engine.eval(new FileReader("script.js"));
Invocable invocable = (Invocable)engine;
invocable.invokeFunction("testBashMethod");
}
On executing the above method I get the following error:
jdk.nashorn.internal.runtime.ECMAException: ReferenceError: "$EXEC" is not defined
My guess is that I need to load the nashorn engine in scripting mode in java. On the terminal I can run the engine with scripting mode then the following executes successfully:
jjs -scripting
jjs> $EXEC('echo Hello World..!!')
My Question: How do I load the nashorn engine in Java in scripting mode? so that bash scripting methods are available. Or is there something else that I am missing.
Thank you for the help.
I have to execute some bash shell mands from Java using nashorn.
I have a javascript file:
#!/usr/bin/jjs
var testBashMethod = function(name){
$EXEC("echo Hello from bash ${name}");
};
testBashMethod("foobar");
I have java method loading the above javascript method into Nashorn engine and executing it:
public void executeScript(){
ScriptEngineManager engineManager = new ScriptEngineManager();
ScriptEngine engine = engineManager.getEngineByName("nashorn");
engine.eval(new FileReader("script.js"));
Invocable invocable = (Invocable)engine;
invocable.invokeFunction("testBashMethod");
}
On executing the above method I get the following error:
jdk.nashorn.internal.runtime.ECMAException: ReferenceError: "$EXEC" is not defined
My guess is that I need to load the nashorn engine in scripting mode in java. On the terminal I can run the engine with scripting mode then the following executes successfully:
jjs -scripting
jjs> $EXEC('echo Hello World..!!')
My Question: How do I load the nashorn engine in Java in scripting mode? so that bash scripting methods are available. Or is there something else that I am missing.
Thank you for the help.
Share Improve this question asked Nov 11, 2014 at 19:45 PanshulPanshul 1,0822 gold badges14 silver badges33 bronze badges2 Answers
Reset to default 10NashornScriptEngineFactory factory = new NashornScriptEngineFactory();
ScriptEngine engine = factory.getEngine(new String[] { "-scripting" });
See the Nashorn Wiki for lots more documentation. I got (and modified) the above snippet from the Nashorn jsr223 engine notes page.
You can also define nashorn options via via "nashorn.args" System property as well. So, something like
java -Dnashorn.args=-scripting MyMainClass
will work and your code can stick to javax.script API (need not use jdk.nashorn.api.scripting API). But this implies all engines created by your Java process will have scripting mode enabled.
本文标签: javascriptEnable scripting mode for nashorn in javaStack Overflow
版权声明:本文标题:javascript - Enable scripting mode for nashorn in java - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743840457a2548179.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论