我有一个python脚本,我正在使用Jython通过java进程执行相同的操作。
数据库 - mongodb
的pom.xml
<dependency>
<groupId>org.python</groupId>
<artifactId>jython-standalone</artifactId>
<version>2.7.0</version>
</dependency>
Java Process
public String execute(String val) throws FileNotFoundException,
ScriptException {
ClassLoader classLoader = getClass().getClassLoader();
InputStream is = (InputStream) classLoader
.getResourceAsStream("my.py");
PythonInterpreter interpreter = new PythonInterpreter();
interpreter.execfile(is);
PyObject someFunc = interpreter.get("myFunc");
PyObject result = someFunc.__call__(new PyString(val));
String realResult = (String) result.__tojava__(String.class);
return realResult;
}
当我运行python脚本 my.py
时,我收到以下错误
File "<iostream>", line 3, in <module>
ImportError: No module named pymongo
答案 0 :(得分:0)
我通过导入以下模块解决了: -
PythonInterpreter interpreter = new PythonInterpreter(null, new PySystemState());
PySystemState sys = interpreter.getSystemState();
sys.path.append(new PyString("\\python_modules\\pymongo-3.3.0-cp26-none-win_amd64.whl"));
我已从here下载了 pymongo 模块。 以上对我有用,这样我们就可以通过jython导入模块了。