public class JavaRunPython {
public static String ByJython(Map map,String filePath,String methodName) {
Properties props = new Properties();
props.put(“python.console.encoding”, “UTF-8”);
// Used to prevent: console: Failed to install ”: java.nio.charset.UnsupportedCharsetException: cp0.
props.put(“python.security.respectJavaAccessibility”, “false”);
//don’t respect java accessibility, so that we can access protected members on subclasses
props.put(“python.import.site”,”false”);
Properties preprops = System.getProperties();
PythonInterpreter.initialize(preprops, props, new String[0]);
PythonInterpreter interp= new PythonInterpreter();
// 1. Python面向函数式编程: 在Java中调用Python函数
//String pythonFunc = “D:\\javaPythonFile.py”;
// 加载python程序
interp.execfile(filePath);
for (Map.Entry mp : map.entrySet()) {
interp.set(mp.getKey(), mp.getValue());
}
// System.setProperty(“python.home”, “”);
// 调用Python程序中的函数
PyFunction pyf = interp.get(methodName, PyFunction.class);
//PyObject dddRes = pyf.__call__(Py.newString(“zhangsan”), Py.newInteger(3));
PyObject pyObj = pyf.__call__();
String str = (String) pyObj.__tojava__(String.class);
pi1.cleanup();
pi1.close();
return str;
}
}
以上就是关于 Java 调用Python脚本,实现带参数 的全部内容了,喜欢的小伙伴别忘了点赞分享一下哦,关注优讯网,优讯有你更精彩!
转载自: https://my.oschina.net/lisc2016/blog/3115424
版权归原作者所有,如有侵权请联系我们删除。
今天的文章java执行python脚本并传递参数_Java 调用Python脚本,实现带参数分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/8762.html