java调用python的几种方法(看这篇就够了)

关注公众号:任识算法,获取更多技术干货!

本文主要介绍了java调用python的几种方法。 

在java类中直接执行python语句

准备工作:

创建maven工程,结构如下:到官网https://www.jython.org/download.html下载Jython的jar包或者在maven的pom.xml文件中加入如下代码:

<dependency>java
    <groupId>org.python</groupId>
    <artifactId>jython-standalone</artifactId>
    <version>2.7.0</version>
</dependency>

创建JavaRunPython.java类:

import org.python.util.PythonInterpreter;

public class JavaRunPython {

    public static void main(String[] args) {
        PythonInterpreter interpreter = new PythonInterpreter();
        interpreter.exec("a='hello world'; ");
        interpreter.exec("print a;");
    }

}

2.在java中直接调用python脚本

在本地的D盘创建一个python脚本,文件名字为javaPythonFile.py,文件内容如下:

a = 1
b = 2
print (a + b)

创建JavaPythonFile.java类,内容如下:

import org.python.util.PythonInterpreter;

public class JavaPythonFile {

    public static void main(String[] args) {
        PythonInterpreter interpreter = new PythonInterpreter();
        interpreter.execfile("D:\\javaPythonFile.py");
    }
}

输出结果如下:

注意:以上两个方法虽然都可以调用python程序,但是使用Jpython调用的python库不是很多,如果你用以上两个方法调用,而python的程序中使用到第三方库,这时就会报错java ImportError: No module named xxx。遇到这种情况推荐使用下面的方法,即可解决该问题。

3.使用Runtime.getRuntime()执行python脚本文件,推荐使用

为了验证该方法可以运行含有python第三方库的程序,在本地的D盘创建一个python脚本,文件名字为demo1.py,代码如下:

import numpy as np

a = np.arange(12).reshape(3,4)
print(a)

可以看到程序中用到了numpy第三方库,并初始化了一个3×4的一个矩阵。

下面来看看怎么用Runtime.getRuntime()方法来调用python程序并输出该结果,java代码如下:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Demo1 {
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Process proc;
        try {
            proc = Runtime.getRuntime().exec("python D:\\demo1.py");// 执行py文件
            //用输入输出流来截取结果
            BufferedReader in = new BufferedReader(new InputStreamReader(proc.getInputStream()));
            String line = null;
            while ((line = in.readLine()) != null) {
                System.out.println(line);
            }
            in.close();
            proc.waitFor();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (InterruptedException e) {
            e.printStackTrace();
        } 
    }
}

输出的结果如下图所示:

可以看到运行成功了,但有的朋友可能会问了,怎么在python程序中函数传递参数并执行出结果,下面我就举一例来说明一下。

先写一个python的程序,代码如下:

import sys

def func(a,b):
    return (a+b)

if __name__ == '__main__':
    a = []
    for i in range(1, len(sys.argv)):
        a.append((int(sys.argv[i])))

    print(func(a[0],a[1]))

其中sys.argv用于获取参数url1,url2等。而sys.argv[0]代表python程序名,所以列表从1开始读取参数。

以上代码实现一个两个数做加法的程序,下面看看在java中怎么传递函数参数,代码如下:

int a = 18;
int b = 23;
try {
    String[] args1 = new String[] { "python", "D:\\demo2.py", String.valueOf(a), String.valueOf(b) };
    Process proc = Runtime.getRuntime().exec(args1);// 执行py文件

    BufferedReader in = new BufferedReader(new InputStreamReader(proc.getInputStream()));
    String line = null;
    while ((line = in.readLine()) != null) {
        System.out.println(line);
    }
    in.close();
    proc.waitFor();
} catch (IOException e) {
    e.printStackTrace();
} catch (InterruptedException e) {
    e.printStackTrace();
}

在来一个实战案例---模型获取相似关键词:

调用pyhon模型

java代码

package com.hadoop.flowsum;/*文件     :testpython.java
IDE      :IntelliJ IDEA
*/

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;

public class Demo1 {

    public static String getType(Object o){ //获取变bai量类型方法du

        return o.getClass().toString(); //使用int类型的getClass()方法

    }

    public static void main(String[] args) throws IOException, InterruptedException {
        // TODO Auto-generated method stub

        String cmds = String.format("python D:word2vec\\testsimilar.py %s","中国");
        Process pcs = Runtime.getRuntime().exec(cmds);
        pcs.waitFor();

        BufferedReader in = new BufferedReader(new InputStreamReader(pcs.getInputStream(),"GB2312"));

        Map<String, String> map = new HashMap<>();
        String line = null;
//        System.out.println(in.readLine());
        while ((line = in.readLine()) != null) {
            System.out.println(line);
            String[] s = line.split("\t");
//            System.out.println(s[0]+s[1]);
            map.put(s[0],s[1]);
        }
//        System.out.println(in.readLine());
        if (in.readLine() == null){
            System.out.println("yes hhhhhh");
        }
//        String key1 = (String) map.keySet().toArray()[0];
        String key1 = (String) map.keySet().toArray()[0];
        String d1 = map.get(key1);
        double xx = Double.parseDouble(d1);
//        System.out.println(getType(xx));
//        if (xx > 0.6){
//            System.out.println("nice   ................");
//        }
    }
}

python代码:

# * coding:utf-8_*_


import os
import time
import warnings
import sys
# import config
# import logging
from gensim.models import Word2Vec
# from gensim.models.word2vec import LineSentence, PathLineSentences
# from pretreatment.pretreatment import PreDeal
warnings.filterwarnings(action='ignore', category=UserWarning, module='gensim')
model = Word2Vec.load(r"D:\\model\\word2vec.model")


def similarwords(keyword, tops=5):
    # 默认获取前10个相似关键词
    start = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(time.time()))
    # print("start execute Word2vec, get similar keywords! Time:" + start +">>>>>>>>>>>>>>>>>>>>>")
    try:
        # model = Word2Vec.load(modelpath)
        words = model.wv.most_similar(keyword, topn=tops)
    except KeyError:
        # print("word '%s' not in vocabulary" % keyword)
        return None
    end = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(time.time()))
    if not words:
        return None
        # res = [[item[0], item[1]] for item in words]   # 相似关键词及其相似度
    res = []
    for word in words:
        res.append([word[0], word[1]])
        print(word[0], "\t", word[1])
    # print("get similar keywords end!................... Time:" + end + ">>>>>>>>>>>>>>>>>>>>>")
    # print(res)
    return res


if __name__ == '__main__':
    word = sys.argv[1];
    similarwords(word)

输出:

  • 46
    点赞
  • 312
    收藏
    觉得还不错? 一键收藏
  • 21
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 21
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值