首页 > 代码库 > Java执行groovy脚本

Java执行groovy脚本

 1 Binding binding = new Binding(); 2 binding.setVariable("foo", new Integer(2)); 3 GroovyShell shell = new GroovyShell(binding); 4  5 String script = "import com.myb.to.infrastructure.Md5Util; " 6         + "def a = 12; println ‘C# md5:‘ + Md5Util.md5(‘C#‘); " 7         + "return foo * a "; 8 Object value =http://www.mamicode.com/ shell.evaluate(script); 9 System.out.println(value.toString());10 11 EventDetailTo to = new EventDetailTo();12 to.setId(1);13 to.setTitle("狗B是怎么炼成的");14 binding = new Binding();15 binding.setVariable("to", to);16 shell = new GroovyShell(binding);17 script = "import com.myb.to.EventDetailTo; "18         + "def getTitle(EventDetailTo to) { return to.getTitle()}; "19         + "getTitle(to)";20 value =http://www.mamicode.com/ shell.evaluate(script);21 System.out.println(value.toString());