java使用Runtime.getRuntime來執行python指令碼

來源:互聯網
上載者:User

 

這個是自己做項目的一個需求,之前使用jython來在java中調用python指令碼,但是當python引入的第三方的類庫之後,jython中是不存在這種包的,就會造成的結果是,不能使用 import fontforge 是沒有定義的。

下面是直接使用java的一個函數,Runtime類來進行python指令碼的調用。下面對對應的java程式

 

import java.io.IOException;public class TestJava {public static void main(String[] args) throws IOException{// 使用用Ping命令 //Process ee = Runtime.getRuntime().exec( //"cmd.exe /c start ping 10.5.2.19");/*try{Runtime rt = Runtime.getRuntime();//System.out.println("start!");Process proc = Runtime.getRuntime().exec("cmdpython c:\\Python32\\program\\outfile.py");proc.waitFor(); //waiting the completion of the command//System.out.println("end");}catch (Exception e){e.printStackTrace();}*///ok 這個是可以使用的 try{Runtime rt = Runtime.getRuntime();System.out.println("start");Process proc = Runtime.getRuntime().exec("python outfile.py");proc.waitFor();System.out.println("end");} catch (Exception e){e.printStackTrace();}}//main}

上面要求outfile.py是在java工程的根目錄下的。

 

未完,待續,現在是在windows下的,後面是要測試在ubuntu下的使用,以及如何調用運算的結果的方面的事情。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.