亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

java中怎么調用python腳本

小億
482
2024-06-04 10:08:21
欄目: 編程語言

在Java中調用Python腳本可以使用以下幾種方法:

  1. 使用Runtime類的exec方法執行Python腳本:
String command = "python path/to/python/script.py";
Process process = Runtime.getRuntime().exec(command);

BufferedReader input = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line;
while ((line = input.readLine()) != null) {
    System.out.println(line);
}
input.close();
  1. 使用ProcessBuilder類執行Python腳本:
ProcessBuilder pb = new ProcessBuilder("python", "path/to/python/script.py");
Process process = pb.start();

BufferedReader input = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line;
while ((line = input.readLine()) != null) {
    System.out.println(line);
}
input.close();
  1. 使用Jython庫將Python代碼嵌入到Java中執行:

首先需要在項目中引入Jython庫,然后可以直接在Java代碼中調用Python代碼:

import org.python.core.PyObject;
import org.python.util.PythonInterpreter;

public class Main {
    public static void main(String[] args) {
        PythonInterpreter interpreter = new PythonInterpreter();
        interpreter.execfile("path/to/python/script.py");
        
        PyObject someFunc = interpreter.get("someFunc");
        someFunc.__call__();
    }
}

這些是在Java中調用Python腳本的幾種常用方法,可以根據具體需求選擇適合的方法。

0
清苑县| 任丘市| 二连浩特市| 江油市| 南投县| 怀集县| 日喀则市| 惠水县| 玛纳斯县| 开化县| 中江县| 长春市| 聊城市| 新河县| 沭阳县| 巴东县| 长武县| 博客| 无锡市| 高要市| 靖安县| 天等县| 青海省| 横山县| 巫山县| 壤塘县| 玉林市| 舞阳县| 瑞安市| 平泉县| 思茅市| 三门峡市| 安溪县| 嫩江县| 拜城县| 元谋县| 江油市| 杭锦旗| 麻江县| 涡阳县| 峨眉山市|