1. 程式人生 > >javaweb 使用Process執行python指令碼中的一個問題

javaweb 使用Process執行python指令碼中的一個問題

今天嘗試寫了一個線上測評系統,我的思路是將使用者提交的程式碼儲存在檔案中,然後呼叫Linux命令去執行,獲取結果後再比對,因此,這就牽扯到java呼叫Linux的命令。

使用

String command = String.format( "/usr/local/bin/python3.5 %s", filePath );
process = Runtime.getRuntime().exec( command );
process.waitFor();
in = process.getInputStream();
LineNumberReader read = new LineNumberReader(new InputStreamReader(in
)); res = read.readLine(); read.close(); in.close();

執行Linux命令並獲取結果。

剛開始,我的命令一直是python file_name,結果一直報錯,直到將命令改成/usr/local/bin/python3.5 file_name才成功。