91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
祁门县| 万山特区| 墨江| 汝南县| 津市市| 铜鼓县| 抚远县| 陕西省| 大方县| 宝丰县| 镇安县| 辽中县| 广丰县| 纳雍县| 嘉义县| 赣州市| 永新县| 永州市| 九寨沟县| 库尔勒市| 维西| 巩留县| 抚顺市| 辉南县| 兴安盟| 铜鼓县| 四平市| 衡水市| 定兴县| 洱源县| 玉山县| 禄劝| 衡阳市| 石楼县| 嘉峪关市| 汉源县| 曲阜市| 唐山市| 津市市| 镇坪县| 曲阳县|