Java - Run a string as normal code [duplicate]

扶醉桌前 提交于 2019-12-02 07:32:39
aliteralmind

You want the equivalent of JavaScript's eval. There is no equivalent in Java.

Well, there is but it's not trivial.

You can generate the full source code of a class containing that code. Something like

public class StuffToDynamicallyCompile  {
   public static final void main(String[] ignored)  {
       PUT STUFF HERE!
   }
}

And then programatically invoke the compiler, as described in this answer, or as stated in the comments: How to compile .java file from within java program

Not a simple task. Perhaps there's a way to minimize your requirements, so you can allow an extremely limited set of commands, and just execute it with a switch ("if 'dothis' then call doThis(), else if 'doThat', call doThat(), etc.).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!