如何动态调用 Java 代码?
我怎样才能编写像与 eval 函数一起使用的 javascript 代码一样执行的 Java 代码?
我想要实现的是这样的:
System.execute ("String str = \"test\"; System.out.println(str);");
这会打印单词“test”。 (10x dehmann)
代码示例会有很大帮助。
How could I write Java code that is executed like javascript code used together with the eval function?
What I would like to achieve would be something like this:
System.execute ("String str = \"test\"; System.out.println(str);");
which would print the word 'test'. (10x dehmann )
A code sample would help a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
研究一下 BeanShell 或 Groovy。 两者都会给你合理的解决方案——但这些解决方案依赖于我对你的问题的解释,这可能是有缺陷的。
Look into BeanShell or Groovy. Both will give you reasonable solutions--but those solutions rely on my interpretation of your problem, which may be flawed.
我使用过 Java 6 附带的 JavaScript 引擎,它运行得很好。 发动机的性能非常非常不错。
检查页面 http://java.sun .com/javase/6/docs/technotes/guides/scripting/programmer_guide/index.html
I've used the JavaScript engine shipped with Java 6 and it works quite well. The performance of the engine is very very decent.
Check the page http://java.sun.com/javase/6/docs/technotes/guides/scripting/programmer_guide/index.html
我相信当前的 Java SE 6 中存在编译器 API。请参阅 javadoc。
请参阅这篇博文< /a> 了解详细信息和示例。
I believe the compiler API is present in the current Java SE 6. See the javadoc.
See this blog post for details and an example.
为了完整起见,编译器 API 将在下一版本的 Java 中出现。
For completeness sake, the Compiler API is coming in the next version of Java..