您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關(guān)在java項(xiàng)目中調(diào)用python的方法有哪些,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說(shuō),跟著小編一起來(lái)看看吧。
在java類中直接執(zhí)行python語(yǔ)句
在java類中直接調(diào)用本地python腳本
使用Runtime.getRuntime()執(zhí)行python腳本文件(推薦)
調(diào)用python腳本中的函數(shù)
創(chuàng)建maven工程,結(jié)構(gòu)如下:
到官網(wǎng)https://www.jython.org/download.html下載Jython的jar包或者在maven的pom.xml文件中加入如下代碼:
<dependency> <groupId>org.python</groupId> <artifactId>jython-standalone</artifactId> <version>2.7.0</version> </dependency>
創(chuàng)建JavaRunPython.java類:
package com.test; 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;"); } }
輸出結(jié)果如下:
出現(xiàn)的console: Failed to install '': java.nio.charset.UnsupportedCharsetException: cp0.并不是錯(cuò)誤,而是兼容所導(dǎo)致,解決方法如下:
在本地的D盤創(chuàng)建一個(gè)python腳本,文件名字為javaPythonFile.py,文件內(nèi)容如下:
a = 1 b = 2 print (a + b)
創(chuàng)建JavaPythonFile.java類,內(nèi)容如下:
package com.test; import org.python.util.PythonInterpreter; public class JavaPythonFile { public static void main(String[] args) { PythonInterpreter interpreter = new PythonInterpreter(); interpreter.execfile("D:\\javaPythonFile.py"); } }
輸出結(jié)果如下:
在本地的D盤創(chuàng)建一個(gè)python腳本,文件名字為Runtime.py,文件內(nèi)容如下:
print('RuntimeDemo')
創(chuàng)建RuntimeFunction.java類,內(nèi)容如下:
package com.test; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class RuntimeFunction { public static void main(String[] args) { Process proc; try { proc = Runtime.getRuntime().exec("python D:\\Runtime.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(); } } }
運(yùn)行結(jié)果如下:
在本地的D盤創(chuàng)建一個(gè)python腳本,文件名字為add.py,文件內(nèi)容如下:
def add(a,b): return a + b
創(chuàng)建Function.java類,內(nèi)容如下:
package com.test; import org.python.core.PyFunction; import org.python.core.PyInteger; import org.python.core.PyObject; import org.python.util.PythonInterpreter; public class Function { public static void main(String[] args) { PythonInterpreter interpreter = new PythonInterpreter(); interpreter.execfile("D:\\add.py"); // 第一個(gè)參數(shù)為期望獲得的函數(shù)(變量)的名字,第二個(gè)參數(shù)為期望返回的對(duì)象類型 PyFunction pyFunction = interpreter.get("add", PyFunction.class); int a = 5, b = 10; //調(diào)用函數(shù),如果函數(shù)需要參數(shù),在Java中必須先將參數(shù)轉(zhuǎn)化為對(duì)應(yīng)的“Python類型” PyObject pyobj = pyFunction.__call__(new PyInteger(a), new PyInteger(b)); System.out.println("the anwser is: " + pyobj); } }
運(yùn)行結(jié)果如下:
以上就是在java項(xiàng)目中調(diào)用python的方法有哪些,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過(guò)這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。