Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using/Creating Python objects with Jython

HI,

lets say I have a Java interface B, something like this. B.java :

public interface B { String FooBar(String s); }

and I want to use it with a Python class D witch inherits B, like this. D.py :

class D(B):
    def FooBar(s)
        return s + 'e'

So now how do I get an instance of D in java? I'm sorry im asking such a n00b question but the Jython doc sucks / is partially off line.

like image 648
JustMaximumPower Avatar asked Nov 27 '25 20:11

JustMaximumPower


1 Answers

Code for your example above. You also need to change the FooBar implementation to take a self argument since it is not a static method.

You need to have jython.jar on the classpath for this example to compile and run.

import org.python.core.PyObject;
import org.python.core.PyString;
import org.python.util.PythonInterpreter;
public class Main {

    public static B create() 
    {
        PythonInterpreter interpreter = new PythonInterpreter();
        interpreter.exec("from D import D");
        PyObject DClass = interpreter.get("D");

        PyObject DObject = DClass.__call__();
        return (B)DObject.__tojava__(B.class);
    }

    public static void main(String[] args) 
    {
        B b = create();
        System.out.println(b.FooBar("Wall-"));
    }
}

For more info see the chapter on Jython and Java integration in the Jython Book

like image 108
Filip Korling Avatar answered Nov 30 '25 11:11

Filip Korling



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!