Java程式中除錯Python程式方法

一個單純的少年發表於2020-11-27

Java程式中除錯Python程式方法


程式碼如下(示例):

String[] cmds = new String[]{"python","helloworld.py"};
Process proc = Runtime.getRuntime().exec(cmds);
//通過errorStream輸出執行python程式時產生的error message幫助除錯
InputStream errorStream = proc.getErrorStream();
Scanner scanner = new Scanner(errorStream);
while (scanner.hasNext()) {
	System.out.println(scanner.next());
}

相關文章