java调用python项目实战_Java调用Python
今天遇到Java調用一個Python腳本的問題,糾結了大半天,遇到各種問題。網上搜索的大部分都是用jython,但是我想要調用的python腳本里有import urllib,這個urllib也不是什么第三方擴展庫,在python的安裝path下的Lib下就有,在python命令行下肯定是能找到的。但是用jython的話,sys的path里面就太少了。示例代碼:
import org.python.core.Py;
import org.python.core.PySystemState;
import org.python.util.PythonInterpreter;
public class Test3 {
/**
* @param args
*/
public static void main(String[] args) {
PythonInterpreter interpreter = new PythonInterpreter();
PySystemState sys = Py.getSystemState();
//sys.path.add("D:\\jython2.5.2\\Lib");
System.out.println(sys.path.toString());
interpreter.exec("print 'hello'");
interpreter.exec("import sys");
interpreter.exec("print sys.path");
// interpreter.exec("import urllib");
// interpreter.exec("print urllib");
}
}
打印出來的sys.path為:
['D:\\eclipse_jee_workspace\\ZLabTest\\lib\\Lib', '__classpath__', '__pyclasspath__/']
這兒就只有eclipse的工程的路徑包含了,所以當然找不到urllib啦。而在命令行下打印sys.path為:
用jython差的lib庫少太多了,也懶得用類似sys.path.add("D:\\jython2.5.2\\Lib");一個一個加了,所以果斷放棄jython。
然后查到可以用Runtime.getRuntime().exec("python test.py");示例代碼如下:
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Test5 {
public static void main(String[] args){
try{
System.out.println("start");
Process pr = Runtime.getRuntime().exec("python test.py");
BufferedReader in = new BufferedReader(new
InputStreamReader(pr.getInputStream()));
String line;
while ((line = in.readLine()) != null) {
System.out.println(line);
}
in.close();
pr.waitFor();
System.out.println("end");
} catch (Exception e){
e.printStackTrace();
}
}
}
test.py的文件內容為:
import sys
import urllib
print "hello"
print sys.path
java程序運行的結果為:
start
hello
['D:\\eclipse_jee_workspace\\ZLabTest', 'C:\\Windows\\system32\\python27.zip', 'D:\\Python27\\DLLs', 'D:\\Python27\\lib', 'D:\\Python27\\lib\\plat-win', 'D:\\Python27\\lib\\lib-tk', 'D:\\Python27', 'D:\\Python27\\lib\\site-packages']
end
這就比較對了。但是中途還是遇到了很多問題,在Eclipse中運行上面的java程序拋出異常:
java.io.IOException: Cannot run program "python": CreateProcess error=2, ?????μ???
at java.lang.ProcessBuilder.start(ProcessBuilder.java:460)
at java.lang.Runtime.exec(Runtime.java:593)
at java.lang.Runtime.exec(Runtime.java:431)
at java.lang.Runtime.exec(Runtime.java:328)
at com.mysrc.Test5.main(Test5.java:10)
Caused by: java.io.IOException: CreateProcess error=2, ?????μ???
at java.lang.ProcessImpl.create(Native Method)
at java.lang.ProcessImpl.(ProcessImpl.java:81)
at java.lang.ProcessImpl.start(ProcessImpl.java:30)
at java.lang.ProcessBuilder.start(ProcessBuilder.java:453)
... 4 more
就是沒法調用python程序,而如果是在命令行下用javac編譯,然后java執行的話肯定是對的。怎么才能在Eclipse里也能正常運行了,網上查了半天,在run configurations->environment新建一個PATH,值設為安裝的python的路徑,再運行就OK了。
與50位技術專家面對面20年技術見證,附贈技術全景圖總結
以上是生活随笔為你收集整理的java调用python项目实战_Java调用Python的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 怎么把series变为datamate_
- 下一篇: html radio 默认图片替换_ht