1.安装jpype
安装的时候输入: pip install jpype1 (后面要加一个1)
2.启动JVM
JPype 提供的 startJVM() 函数的作用是启动 JAVA 虚拟机,所以在后续的任何 JAVA 代码被调用前,必须先调用此方法启动 JAVA 虚拟机。
1) jpype.startJVM() 的定义:
startJVM(jvm, *args)
2) jpype.startJVM() 的参数
参数 1: jvm, 描述你系统中 jvm.dll 文件所在的路径,如“ C:\Program Files\IBM\Java50\jre\bin\j9vm\jvm.dll ”。
可以通过调用 jpype.getDefaultJVMPath() 得到默认的 JVM 路径。
参数 2: args, 为可选参数,会被 JPype 直接传递给 JVM 作为 Java 虚拟机的启动参数。此处适合所有合法的 JVM 启动参数,例如:
-agentlib:libname[=options]
-classpath classpath
-verbose
-Xint
3.关闭JVM
当使用完 JVM 后,可以通过 jpype.shutdownJVM() 来关闭 JVM,该函数没有输入参数。当 python 程序退出时,JVM 会自动关闭。
4.引用第三方Java扩展包
python 项目中需要调用第三方的 Java 扩展包,这也是 JPype 的一个重要用途:。
通过在 JVM 启动参数增加:-Djava.class.path=ext_classpath,实现在 python 代码中调用已有的 Java 扩展包。
5.访问JAVA的系统属性
有时,某些 Java 应用需要设置或者获取 JVM 中的系统属性。
在 JVM 启动时设置系统变量示例:
在 JVM 的启动参数中加入如下参数:
-Dproperty=value
1.简单的直接调用JAVA API
from jpype import *
startJVM("d:/tools/j2sdk/jre/bin/client/jvm.dll", "-ea")
java.lang.System.out.println("Hello World")
shutdownJVM()
2. 将JAVA代码打包成第三方jar包
打包方法:编译java code -->打包
打包命令:jar cvf jar包 类文件
jar cvf JavaTest.jar com/Main.class
java 示例代码:
package com;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
public String sayHello(String user) {
return "Hello " + user;
}
// 注意这里是个static方法
public static String sayBye(String user) {
return "Bye " + user;
}
public int calc(int a, int b) {
return a + b;
}
public void sayNone(String user) {
System.out.println("Nothing " + user);
}
public String getDistanceTime(String str1, String str2) {
sayNone(str1);
System.out.println(sayBye(str2));
DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
long day = 0L;
long hour = 0L;
long min = 0L;
long sec = 0L;
try {
Date one = df.parse(str1);
Date two = df.parse(str2);
long time1 = one.getTime();
long time2 = two.getTime();
long diff;
if (time1 < time2) {
diff = time2 - time1;
} else {
diff = time1 - time2;
}
day = diff / 86400000L;
hour = diff / 3600000L - day * 24L;
min = diff / 60000L - day * 24L * 60L - hour * 60L;
sec = diff / 1000L - day * 24L * 60L * 60L - hour * 60L * 60L - min * 60L;
} catch (ParseException e) {
System.out.println("err:" + e);
}
return day + "天" + hour + "小时" + min + "分" + sec + "秒";
}
}
3.Python调用第三方JAVA jar包程序(请在意细节)
# -*- coding:utf-8 -*-
from jpype import *
import jpype
# 启动
startJVM(jpype.getDefaultJVMPath(),"-ea", "-Djava.class.path=jar/JavaTest.jar")
#多个jar包:
#startJVM(getDefaultJVMPath(),"-ea","-Djava.class.path=%s;%s"%(jarpath,jarpath2))
S1="2012-01-03 12:13:45"
S2="2013-01-03 12:10:45"
# Main()
test = JPackage("com").Main()
print("sayHello-->",test.sayHello("world"))
print("calc-->",test.calc(2,3))
print("sayBye-->",test.sayNone("haha"))
print("getDistanceTime-->",test.getDistanceTime(S1,S2))
# java中的static方法调用,Main
test2 = JPackage("com").Main
print("sayBye2-->",test2.sayBye("wtf"))
# 关闭
shutdownJVM()
# 输出:
"""
sayHello--> Hello world
calc--> 5
Nothing haha
sayBye--> None
Nothing 2012-01-03 12:13:45
Bye 2013-01-03 12:10:45
getDistanceTime--> 365天23小时57分0秒
sayBye2--> Bye wtf
"""
1.RuntimeError: No matching overloads found for XXX in find. at native\common\jp_method.cpp:127
或是 RuntimeError: No matching overloads found for XXX in find. at native\common\jp_method.cpp:121 (需要实例化)
如果如下写:
test = JPackage("com").Main()
out = test.sayBye("yoyo")
print("sayBye-->",out)
# 错误信息:
RuntimeError: No matching overloads found for sayBye in find. at native\common\jp_method.cpp:127
上面 java代码中 sayBye() 是一个静态函数,因此不需要实例化就可以使用,正确方法:
test2 = JPackage("com").Main
out = test2.sayBye("wtf")
print("sayBye2-->",out)
# 输出:
sayBye2--> Bye wtf
假设你要设置的属性名为 yourProperty,属性值为 yourValue 。
1)JVM启动时设置系统变量示例
import jpype
jvmPath = jpype.getDefaultJVMPath()
jvmArg = "-DyourProperty=yourValue "
if not jpype.isJVMStarted():
jpype.startJVM(jvmPath,jvmArg)
2)在程序中设置系统变量示例
import jpype
prop = "yourProperty"
value = "yourValue"
system = jpype.JClass("java.lang.System")
system.setProperty(str(prop),str(value))
3)在程序中获取系统变量示例
import jpype
prop = "yourProperty"
system = jpype.JClass("java.lang.System")
value = system.getProperty(str(prop))
参考博文:
1.https://www.cnblogs.com/junrong624/p/5278457.html
2.https://hustleplay.wordpress.com/2010/02/18/jpype-tutorial/
致谢!