Skip to content

Instantly share code, notes, and snippets.

@psanders
Last active May 23, 2019 00:39
Show Gist options
  • Save psanders/893df074b77133ee9cceaae910e4a032 to your computer and use it in GitHub Desktop.
Save psanders/893df074b77133ee9cceaae910e4a032 to your computer and use it in GitHub Desktop.
...
public void jsLaunch() {
Context polyglot = Context
.newBuilder()
.allowExperimentalOptions(true)
.allowIO(true)
.allowAllAccess(true).build();
polyglot.eval("js", "const System = Java.type('java.lang.System');"
+ "load(System.getProperty('user.dir') + '/mod/core/main.js')");
}
....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment