当前位置:首页 » 编程语言 » java运行python文件

java运行python文件

发布时间: 2022-09-24 06:08:15

java运行python脚本的几种方式

由于在项目需要执行Python,找寻相关资料,总结出以下几种方式:

直接执行Python脚本代码
引用 org.python包

1 PythonInterpreter interpreter = new PythonInterpreter();
2 interpreter.exec("days=('mod','Tue','Wed','Thu','Fri','Sat','Sun'); "); ///执行python脚本


2. 执行python .py文件

1 PythonInterpreter interpreter = new PythonInterpreter();
2 InputStream filepy = new FileInputStream("D:\\demo.py");
3 interpreter.execfile(filepy); ///执行python py文件
4 filepy.close();


3. 使用Runtime.getRuntime()执行脚本文件

这种方式和.net下面调用cmd执行命令的方式类似。如果执行的python脚本有引用第三方包的,建议使用此种方式。使用上面两种方式会报错java ImportError: No mole named arcpy。

1 Process proc = Runtime.getRuntime().exec("python D:\\demo.py");
2 proc.waitFor();

⑵ 怎么使用java运行python脚本

1.直接执行Python脚本代码
引用 org.python包
1 PythonInterpreter interpreter = new PythonInterpreter();
2 interpreter.exec("days=('mod','Tue','Wed','Thu','Fri','Sat','Sun'); "); ///执行python脚本


2. 执行python .py文件
1 PythonInterpreter interpreter = new PythonInterpreter();
2 InputStream filepy = new FileInputStream("D:\\demo.py");
3 interpreter.execfile(filepy); ///执行python py文件
4 filepy.close();


3. 使用Runtime.getRuntime()执行脚本文件
这种方式和.net下面调用cmd执行命令的方式类似。如果执行的python脚本有引用第三方包的,建议使用此种方式。使用上面两种方式会报错java ImportError: No mole named arcpy。
1 Process proc = Runtime.getRuntime().exec("python D:\\demo.py");
2 proc.waitFor();

⑶ 建立java与python的接口,让java能调用python脚本。请问可以用什么方式

不建议研究jython。比较简单的思路是把python脚本完全当做一个外部程序,用shell方式调用它。
首先设计好python脚本的接口,把参数用命令行方式传入,然后输出打印出来。示例:

$ python func.py arg1 arg2
result
然后在java里就可以用Runtime来执行shell命令,解析输出字符串然后得到结果。

⑷ 怎么使用java运行python脚本

引用 org.python包
1 PythonInterpreter interpreter = new PythonInterpreter();
2 interpreter.exec("days=('mod','Tue','Wed','Thu','Fri','Sat','Sun'); "); ///执行python脚本

2. 执行python .py文件
1 PythonInterpreter interpreter = new PythonInterpreter();
2 InputStream filepy = new FileInputStream("D:\\demo.py");
3 interpreter.execfile(filepy); ///执行python py文件
4 filepy.close();

3. 使用Runtime.getRuntime()执行脚本文件
这种方式和.net下面调用cmd执行命令的方式类似。如果执行的python脚本有引用第三方包的,建议使用此种方式。使用上面两种方式会报错java ImportError: No mole named arcpy。
1 Process proc = Runtime.getRuntime().exec("python D:\\demo.py");
2 proc.waitFor();
本回答由电脑网络分类达人 朱冬梅推荐
评论
1 0

瓶邪
采纳率:92% 来自团队:网络知道电脑团 擅长: 电脑/网络 生活 电子数码
其他回答

如果是jython,也就是运行在Jvm上的python的话,可以使用JSR223,JDK1.6已经包含了该扩展包。JSR223是一个用于解析多种脚本语言的库包,其中包括Jython。除了JSR223包之外,还需要jython-engine.jar包。
ScriptEngine engine = new ScriptEngineManager().getEngineByName("python");
try
{
engine.eval(new FileReader("./script/listing.py"));
}
catch(ScriptException se)
{
}
catch(IOException ie)
{
}

⑸ 如何在Java中调用Python代码

Jython(原JPython),是一个用Java语言写的Python解释器。 在没有第三方模块的情况下,通常选择利用Jython来调用Python代码, 它是一个开源的JAR包,你可以到官网下载 一个HelloPython程序 importorg.python.util.PythonInterpreter; publicclassHelloPython{ publicstaticvoidmain(String[]args){ PythonInterpreterinterpreter=newPythonInterpreter(); interpreter.exec("print('hello')"); } } 什么是PythonInterpreter?它的中文意思即是“Python解释器”。我们知道Python程序都是通过解释器来执行的,我们在Java中创建一个“解释器”对象,模拟Python解释器的行为,通过exec("Python语句")直接在JVM中执行Python代码,上面代码的输出结果为:hello 在Jvm中执行Python脚本 interpreter.execfile("D:/labs/mytest/hello.py"); 如上,将exec改为execfile就可以了。需要注意的是,这个.py文件不能含有第三方模块,因为这个“Python脚本”最终还是在JVM环境下执行的,如果有第三方模块将会报错:javaImportError:Nomolenamedxxx 仅在Java中调用Python编写的函数 先完成一个hello.py代码: defhello(): return'Hello' 在Java代码中调用这个函数: importorg.python.core.PyFunction; importorg.python.core.PyObject; importorg.python.util.PythonInterpreter; publicclassHelloPython{ publicstaticvoidmain(String[]args){ PythonInterpreterinterpreter=newPythonInterpreter(); interpreter.execfile("D:/labs/hello.py"); PyFunctionpyFunction=interpreter.get("hello",PyFunction.class);//第一个参数为期望获得的函数(变量)的名字,第二个参数为期望返回的对象类型 PyObjectpyObject=pyFunction.__call__();//调用函数 System.out.println(pyObject); } } 上面的代码执行结果为:Hello 即便只是调用一个函数,也必须先加载这个.py文件,之后再通过Jython包中所定义的类获取、调用这个函数。 如果函数需要参数,在Java中必须先将参数转化为对应的“Python类型”,例如: __call__(newPyInteger(a),newPyInteger(b)) a,b的类型为Java中的int型,还有诸如:PyString(Stringstring)、PyList(Iteratoriter)等。 详细可以参考官方的api文档。 包含第三方模块的情况:一个手写识别程序 这是我和舍友合作写的一个小程序,完整代码在这里:,界面上引用了corejava上的一段代码。Python代码是舍友写的,因为在Python程序中使用了第三方的NumPy模块,导致无法通过Jython执行。下面这个方法纯粹是个人思路,没有深入查资料。核心代码如下: importjava.io.*; classPyCaller{ privatestaticfinalStringDATA_SWAP="temp.txt"; privatestaticfinalStringPY_URL=System.getProperty("user.dir")+"\test.py"; (Stringpath){ PrintWriterpw=null; try{ pw=newPrintWriter(newFileWriter(newFile(DATA_SWAP))); }catch(IOExceptione){ e.printStackTrace(); } pw.print(path); pw.close(); } publicstaticStringreadAnswer(){ BufferedReaderbr; Stringanswer=null; try{ br=newBufferedReader(newFileReader(newFile(DATA_SWAP))); answer=br.readLine(); }catch(FileNotFoundExceptione){ e.printStackTrace(); }catch(IOExceptione){ e.printStackTrace(); } returnanswer; } publicstaticvoidexecPy(){ Processproc=null; try{ proc=Runtime.getRuntime().exec("python"+PY_URL); proc.waitFor(); }catch(IOExceptione){ e.printStackTrace(); }catch(InterruptedExceptione){ e.printStackTrace(); } } //测试码 publicstaticvoidmain(String[]args)throwsIOException,InterruptedException{ writeImagePath("D:\labs\mytest\test.jpg"); execPy(); System.out.println(readAnswer()); } } 实际上就是通过Java执行一个命令行指令。

⑹ java和python是什么

java和python都是一种面向对象的语言。

Java是一种面向对象的语言,有着和C/C++近似的语法。它是动态链接,允许新的代码在运行时加载与运行,而不是动态类型的。Java的演变相对较慢,最近才合并了一些功能用以支持函数式编程。相对的这种语言和VM的哲学都是将向后兼容作为首要指令。
Python是完全面向对象的语言。函数、模块、数字、字符串都是对象。而且完全支持继承、重载、派生、多继承,有益于增强源代码的复用性。Python是建立一个可扩展的对象模型的常用语言。用于面向对象的设计并不意味着开发者用Python写代码时最常用的风格就是面向对象的风格,它同样支持过程式编程,模块化编程和某些方面的函数式编程。

想了解更多有关Java和Python的详情,推荐咨询达内教育。达内教育拥有1v1督学跟踪式学习有疑问随时沟通,企业级项目,课程穿插大厂真实项目讲解,对标企业人才标准制定专业学习计划,囊括主流热点技术,理论知识+学习思维+实战操作,打造完整学习闭环。达内教育实战讲师、经验丰富、多种班型供学员选择、独创TTS8.0教学系统,满足学生多样化学习需求。感兴趣的话点击此处,免费学习一下

⑺ java运行python脚本时,报错Exception in thread "main" SyntaxError: Illegal character in file

本地库不在默认的路径,编译器无法找到导致的,再换eclipse也还会报这个错误。。。
首先确定已经安装opencv,安装好以后要把opencv-246.jar引入到项目的lib库中,
opencv-246.jar在opencv的安装目录下的/build/java下。

其次就是设置项目的native库,把opencv_java246.dll文件所在的目录加入到Native library location中,opencv_java246.dll在opencv安装目录下的/build/java/x86或/build/java/x64中,前者是32位系统用的,后者64位。

⑻ java调用python程序问题

Strings;
Processprocess=Runtime.getRuntime().exec("/usr/bin/pythonmy.py");
BufferedReaderbufferedReader=newBufferedReader(newInputStreamReader(process.getInputStream());
while((s=bufferedReader.readLine())!=null){
System.out.println(s);
}
process.waitfor();

⑼ java运行python脚本时,报错Exception in thread "main" SyntaxError: Illegal character in file

异常的线程,在MAIN中,在文件 AAA.PY中有编码错误,建议全部统一用UTF8格式。不然容易报此错出来

⑽ java运行python程序,.readLine()读出的内容为null, proc.waitFor();返回值为1,求解

你在while循环里加行代码
line = decodeUnicode(line);

热点内容
主机访问P 发布:2025-01-10 03:17:09 浏览:753
滴滴出行脚本 发布:2025-01-10 03:17:03 浏览:741
安卓扁口有线耳机哪个好 发布:2025-01-10 03:12:06 浏览:642
cubemx中的时钟如何配置 发布:2025-01-10 03:09:51 浏览:725
电脑页面怎么设置密码 发布:2025-01-10 03:05:41 浏览:877
mp4加密提取 发布:2025-01-10 03:05:39 浏览:837
我的世界服务器地址后缀 发布:2025-01-10 02:55:40 浏览:521
百分30利润怎么算法 发布:2025-01-10 02:47:26 浏览:963
怎么查看已连接的wifi密码 发布:2025-01-10 02:45:59 浏览:23
serv是什么电脑服务器 发布:2025-01-10 02:45:26 浏览:256