Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Calling Python from Java through scripting engine (jython)?

I'm trying to call Jython from a Java 6 application using javax.script:

import javax.script.ScriptEngine;
import javax.script.ScriptEngineManager;
import javax.script.ScriptException;

public class jythonEx
{
    public static void main (String args[]) throws ScriptException
    {
        ScriptEngineManager mgr = new ScriptEngineManager();
        ScriptEngine pyEngine = mgr.getEngineByName("python");
        try {
            pyEngine.eval("print \"Python - Hello, world!\"");
        } catch (Exception ex) {
            ex.printStackTrace();
        }       
    }
}

This is causing a NullPointerException:

java.lang.NullPointerException
        at jythonEx.main(jythonEx.java:12)

Does anyone have any idea what I'm doing wrong here?

Edit:

Thanks for the responses! I added jython.jar to the classpath and it runs properly:

java -cp "./;jython.jar" jythonEx
like image 643
griffin Avatar asked Apr 20 '10 00:04

griffin


People also ask

Can you call a Python script from Java?

You can use Java Runtime. exec() to run python script, As an example first create a python script file using shebang and then set it executable.

What is Jython script?

Jython is an implementation of the Python programming language designed to run on the Java platform.


1 Answers

You have to register your engine first.

From: ScriptEngineManager.getEngineByName:

[...] first searches for a ScriptEngineFactory that has been registered as a handle [...] Returns null if no such factory was found

The user guide says to use it with JSR-223 you have to:

As of Jython 2.5.1 an implementation of JSR 223 is bundled in jython.jar. Simply add jython to your CLASSPATH and ask for the python script engine.

Did you do that already?

EDIT About your comment: I think you should open a new question, you'll get better answers.

like image 152
OscarRyz Avatar answered Oct 28 '22 03:10

OscarRyz