本文实例讲述了Java实现调用jython执行python文件的方法。分享给大家供大家参考,具体如下:
在web开发时候,经常在web环境使用本地环境的第三方库什么的,本文讲解java如何执行python文件。
网上说方法有三种,其实也就两种,下面着中介绍第二种通过(jython)。
方法一
|
1
2
3
4
5
6
7
|
java.lang.Runtime
Runtime rt = Runtime.getRuntime();
try {
Process proc = rt.exec("python /tmp/test.py");
}catch (Exception e){
e.printStackTrace();
}
|
小计一下:
1、Runtime.getRuntime()可以取得当前JVM的运行时环境,这也是在Java中唯一一个得到运行时环境的方法。
2、Runtime上其他大部分的方法都是实例方法,也就是说每次进行运行时调用时都要用到getRuntime方法。
3、Runtime中的exit方法是退出当前JVM的方法,估计也是唯一的一个吧,因为我看到System类中的exit实际上也是通过调用Runtime.exit()来退出JVM的,这里说明一下Java对Runtime返回值的一般规则(后边也提到了),0代表正常退出,非0代表异常中止,这只是Java的规则,在各个操作系统中总会发生一些小的混淆。
第二种(重点)
调用jython API
第一步:添加依赖
|
1
2
3
4
5
6
|
<!-- https://mvnrepository.com/artifact/org.python/jython -->
<dependency>
<groupId>org.python</groupId>
<artifactId>jython</artifactId>
<version>2.7.0</version>
</dependency>
|
第二步:新建一个Test.java测试类
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import org.python.util.PythonInterpreter;
import java.util.Properties;
/**
* Author: 遇见小星
* Email: tengxing7452@163.com
* Date: 17-3-21
* Time: 下午8:18
* Describe: jpython test
*/
public class Test {
public static void main(String []args){
PythonInterpreter interpreter = new PythonInterpreter();
interpreter.exec("days=('Mod','Tue','Wed','Thu','Fri','Sat','Sun'); ");
interpreter.exec("print days[1];");
interpreter.execfile("/tmp/test.py");
interpreter.exec("print 'created by tengxing on 2017.3'");
}
}
|
第三步:运行Test.java
|
1
2
3
4
|
Testing started at 下午9:40 ...
Tue
this is test.py
created by tengxing on 2017.3!
|
进程已结束,退出代码0
提醒可能报如下异常:
Exception in thread "main" ImportError: Cannot import site module and its dependencies: No module named site
Determine if the following attributes are correct:
原因:没有初始化 python.import.site
解决:
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
public class Test {
public static void main(String []args){
Properties props = new Properties();
props.put("python.home", "path to the Lib folder");
props.put("python.console.encoding", "UTF-8");
props.put("python.security.respectJavaAccessibility", "false");
props.put("python.import.site", "false");
Properties preprops = System.getProperties();
PythonInterpreter.initialize(preprops, props, new String[0]);
PythonInterpreter interpreter = new PythonInterpreter();
interpreter.exec("days=('mod','Tue','Wed','Thu','Fri','Sat','Sun'); ");
interpreter.exec("print days[1];");
interpreter.execfile("/tmp/test.py");
interpreter.exec("print 'created by tengxing on 2017.3!'");
}
}
|
ok 完美
|
1
2
3
4
5
|
//调用python中的方法,并且打印结果
PyFunction func = (PyFunction) interpreter.get("adder",PyFunction.class);
int a = 2010, b = 2;
PyObject pyobj = func.__call__(new PyInteger(a), new PyInteger(b));
System.out.println("anwser = " + pyobj.toString());
|
参考文章:
https://www.zzvips.com/article/156875.html
https://www.zzvips.com/article/135265.html
附:jython.jar点击此处本站下载。
希望本文所述对大家java程序设计有所帮助。
原文链接:https://blog.csdn.net/tengxing007/article/details/64546851
相关文章
- 64M VPS建站:怎样选择合适的域名和SSL证书? 2025-06-10
- 64M VPS建站:怎样优化以提高网站加载速度? 2025-06-10
- 64M VPS建站:是否适合初学者操作和管理? 2025-06-10
- ASP.NET自助建站系统中的用户注册和登录功能定制方法 2025-06-10
- ASP.NET自助建站系统的域名绑定与解析教程 2025-06-10
- 2025-07-10 怎样使用阿里云的安全工具进行服务器漏洞扫描和修复?
- 2025-07-10 怎样使用命令行工具优化Linux云服务器的Ping性能?
- 2025-07-10 怎样使用Xshell连接华为云服务器,实现高效远程管理?
- 2025-07-10 怎样利用云服务器D盘搭建稳定、高效的网站托管环境?
- 2025-07-10 怎样使用阿里云的安全组功能来增强服务器防火墙的安全性?
快网idc优惠网
QQ交流群
-
2025-05-29 97
-
2025-06-04 47
-
Spring Boot启动过程(五)之Springboot内嵌Tomcat对象的start教程详解
2025-05-29 33 -
首个支持 RISC-V 架构的 Ubuntu Kylin 发布
2025-05-25 63 -
2025-05-27 79

