码迷,mamicode.com
首页 > 编程语言 > 详细

Java通过ScriptEngine 执行js脚本案例

时间:2018-02-05 23:18:00      阅读:465      评论:0      收藏:0      [点我收藏+]

标签:style   string   ade   otf   blog   asc   class   span   body   

public static void main(String[] args) throws ScriptException, FileNotFoundException, NoSuchMethodException {
        ScriptEngine engine = new ScriptEngineManager().getEngineByName("javascript");
        
        engine.eval(new FileReader("G:\\tmp\\test.js"));
        
        if(engine instanceof Invocable){
            Invocable in = (Invocable)engine;
            
            Double result = (Double)in.invokeFunction("add", 100.0,200.0);
            
            System.out.println("Result:"+result);
        }
    }

 

Java通过ScriptEngine 执行js脚本案例

标签:style   string   ade   otf   blog   asc   class   span   body   

原文地址:https://www.cnblogs.com/yshyee/p/8419596.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!