String script = "function abc(x,y) {return x+y;}";
Context context = Context.enter();
try {
ScriptableObject scope = context.initStandardObjects();
Scriptable that = context.newObject(scope);
Function fct = context.compileFunction(scope, script, "script", 1, null);
Object result = fct.call(
context, scope, that, new Object[] {2, 3});
System.out.println(Context.jsToJava(result, int.class));
} finally {
Context.exit();
}
UPDATE: quando la funzione viene caricato nel campo di applicazione, oltre ad altre funzioni e variabili
String script = "function abc(x,y) {return x+y;}"
+ "function def(u,v) {return u-v;}";
Context context = Context.enter();
try {
ScriptableObject scope = context.initStandardObjects();
context.evaluateString(scope, script, "script", 1, null);
Function fct = (Function)scope.get("abc", scope);
Object result = fct.call(
context, scope, scope, new Object[] {2, 3});
System.out.println(Context.jsToJava(result, int.class));
} finally {
Context.exit();
}
fonte
2010-10-22 10:57:09
http: // www.mozilla.org/rhino/tutorial.html#callingJSfuns –
@org Questo esempio non mi è molto chiaro. Dove posso specificare il percorso del file JS? Immagino supponga che dovrei semplicemente digitare l'intero codice JS in cmdline e passarlo come argomento alla mia app java! ! ^^" – instantsetsuna