Scripting is recommended in many large scale applications for Sophisticated configurations and ease of maintenance.
Using scripting from the Java platform is easy because the API is relatively small. You can quickly add scripting support to your application using only a handful of interfaces and classes in the javax.script package.
Following code quickly enables your Java environment to run a Java script.
ScriptEngineManager mgr = new ScriptEngineManager();
ScriptEngine jsEngine = mgr.getEngineByName("JavaScript");
try {
jsEngine.eval("print('Hello, world!')");
} catch (ScriptException ex) {
ex.printStackTrace();
}
More Details
No comments:
Post a Comment