Created
June 1, 2011 12:25
-
-
Save dekosuke/1002198 to your computer and use it in GitHub Desktop.
JavaからJavaScript(Rhino)呼び出し
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.script.ScriptEngine; | |
import javax.script.ScriptEngineManager; | |
import javax.script.ScriptException; | |
public class ScriptingForJavaScript { | |
public static void main(String[] args) throws Exception { | |
ScriptEngineManager factory = new ScriptEngineManager(); | |
ScriptEngine engine = factory.getEngineByName("js"); | |
try { | |
engine.eval("print(\"Hello, JavaScript!\")"); | |
} catch (ScriptException ex) { | |
ex.printStackTrace(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment