运行String中包含的一段代码 [英] Run piece of code contained in a String

查看:119
本文介绍了运行String中包含的一段代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在String中有一段Java代码。

I have a piece of Java code in a String.

String javaCode = "if(polishScreenHeight >= 200 && " +
    "polishScreenHeight <= 235 && polishScreenWidth >= 220) { }";

是否可以将此Java字符串转换为Java语句并运行它?可能使用Java反射?

Is it possible to convert this Java String to a Java statement and run it? Possibly using Java reflection?

推荐答案

正如已经建议的那样,您可以使用编译器API 。

As has already been suggested you can compile, save and run code on the fly using the Compiler API.

另一个简洁的选择是使用 beanshell 。 Beanshell不再积极开发,但我可以保证它的可靠性,我已经在多个生产项目中成功使用它。

Another neat alternative would be to use beanshell. Beanshell is no longer actively developed, but I can vouch for it's reliability, I've used it successfully in multiple production projects.

这篇关于运行String中包含的一段代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆