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

溫馨提示×

java如何調用python

小億
81
2024-11-30 05:59:18
欄目: 編程語言

要在Java中調用Python腳本,您可以使用以下方法之一:

方法1:使用Runtime類

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

public class JavaCallPython {
    public static void main(String[] args) {
        try {
            String pythonScriptPath = "/path/to/your/python/script.py";
            Process process = Runtime.getRuntime().exec("python " + pythonScriptPath);

            BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
            String line;
            while ((line = reader.readLine()) != null) {
                System.out.println(line);
            }

            process.waitFor();
            reader.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

方法2:使用Jython庫 首先,您需要下載Jython庫并將其添加到Java項目的類路徑中。下載地址:https://www.jython.org/downloads.html

然后,您可以使用以下代碼調用Python腳本:

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

public class JavaCallPython {
    public static void main(String[] args) {
        try (PythonInterpreter interpreter = new PythonInterpreter()) {
            interpreter.execfile("/path/to/your/python/script.py");

            PyObject result = interpreter.eval("your_function_name()");
            String output = (String) result.__tojava__(String.class);

            System.out.println(output);
        }
    }
}

請注意,這些方法可能需要根據您的項目需求進行調整。

0
广宗县| 乐平市| 聂拉木县| 吴江市| 新昌县| 牡丹江市| 云林县| 周口市| 铁力市| 信阳市| 丘北县| 密山市| 梁山县| 南召县| 仁布县| 岗巴县| 五家渠市| 化德县| 西峡县| 梁河县| 金沙县| 哈密市| 伊宁市| 凤翔县| 会宁县| 姜堰市| 乾安县| 夏河县| 望城县| 原平市| 五家渠市| 华亭县| 含山县| 吉木萨尔县| 杭锦旗| 定安县| 涡阳县| 临桂县| 绥中县| 上林县| 临沧市|