我想从java代码中调用*.py
文件中的python函数,并透明地发送参数并从中接收返回值,而无需修改给定的*.py
文件。与py4j,java2python,ScriptEngine,JPype相比,我realised that Jython PythonInterpreter is the best option。
我成功地使用Jython PythonInterpreter传递/检索列表。但还没有映射。 (我创建stackoverflow question解释了我在传递map参数和检索map返回值时得到的异常。)
我刚尝试传递和检索熊猫系列(我接下来尝试熊猫数据框)如下:
py1.py
import numpy as np1
import pandas as pd
def getSeries():
s = pd.Series(np1.random.randn(5), index=['a', 'b', 'c', 'd', 'e'])
return s
JythonTest.groovy
import org.python.util.PythonInterpreter;
import org.python.core.*;
import org.python.util.*;
class JythonTest
{
static main(def args)
{
PythonInterpreter() pi = new PythonInterpreter()
pi.exec("from py1 import *")
PyFunction pf1 = (PyFunction)pi.get("getSeries")
PyObject obj = pf1.__call__()
println obj
}
}
它出现以下错误:
Exception in thread "main" Traceback (most recent call last):
File "<string>", line 1, in <module>
File "__pyclasspath__/py1.py", line 1, in <module>
ImportError: No module named numpy
谷歌搜索后我意识到Jython does not support pandas and numpy。还有其他在线网页也是这样说的。然而他们都有点老了。
问。我想知道是否确实无法向Jython发送/接收Panda DataFrame?
问。如果不可能,是否有更好的选择?
我也想知道为什么我的发送/接收地图不起作用。