ProcessBuilder waitFor 調用外部應用

来源:https://www.cnblogs.com/ycwu314/archive/2019/08/02/11291226.html
-Advertisement-
Play Games

Runtime.getRuntime().exec()和ProcessBuilder都能啟動子進程。ProcessBuilder waitFor阻塞等待子進程執行返回。ProcessBuilder.command()要傳入字元串list,否則啟動報錯“CreateProcess error=2 系統... ...


小程式項目最初使用ffmpeg轉換微信錄音文件為wav格式,再交給阿裡雲asr識別成文字。視頻音頻轉換最常用是ffmpeg。

1
ffmpeg -i a.mp3 b.wav

相關文章:

問題變成怎樣使用java調用系統的ffmpeg工具。在java中,封裝了進程Process類,可以使用Runtime.getRuntime().exec()或者ProcessBuilder新建進程。

從Runtime.getRuntime().exec()說起

最簡單啟動進程的方式,是直接把完整的命令作為exec()的參數。

1
2
3
4
5
6
7
try {
log.info("ping 10 times");
Runtime.getRuntime().exec("ping -n 10 127.0.0.1");
log.info("done");
} catch (IOException e) {
e.printStackTrace();
}

輸出結果

1
2
17:12:37.262 [main] INFO com.godzilla.Test - ping 10 times
17:12:37.272 [main] INFO com.godzilla.Test - done

我期望的是執行命令結束後再列印done,但是明顯不是。

waitFor阻塞等待子進程返回

Process類提供了waitFor方法。可以阻塞調用者線程,並且返回碼。0表示子進程執行正常。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
* Causes the current thread to wait, if necessary, until the
* process represented by this {@code Process} object has
* terminated. This method returns immediately if the subprocess
* has already terminated. If the subprocess has not yet
* terminated, the calling thread will be blocked until the
* subprocess exits.
*
* @return the exit value of the subprocess represented by this
* {@code Process} object. By convention, the value
* {@code 0} indicates normal termination.
* @throws InterruptedException if the current thread is
* {@linkplain Thread#interrupt() interrupted} by another
* thread while it is waiting, then the wait is ended and
* an {@link InterruptedException} is thrown.
*/
public abstract int waitFor() throws InterruptedException;
1
2
3
4
5
6
7
8
9
10
11
12
try {
log.info("ping 10 times");
Process p = Runtime.getRuntime().exec("ping -n 10 127.0.0.1");
int code = p.waitFor();
if(code == 0){
log.info("done");
}
} catch (IOException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}

輸出結果

1
2
17:15:28.557 [main] INFO com.godzilla.Test - ping 10 times
17:15:37.615 [main] INFO com.godzilla.Test - done

似乎滿足需要了。但是,如果子進程發生問題一直不返回,那麼java主進程就會一直block,這是非常危險的事情。
對此,java8提供了一個新介面,支持等待超時。註意介面的返回值是boolean,不是int。當子進程在規定時間內退出,則返回true。

1
public boolean waitFor(long timeout, TimeUnit unit)

測試代碼

1
2
3
4
5
6
7
8
9
10
11
12
13
14
try {
log.info("ping 10 times");
Process p = Runtime.getRuntime().exec("ping -n 10 127.0.0.1");
boolean exit = p.waitFor(1, TimeUnit.SECONDS);
if (exit) {
log.info("done");
} else {
log.info("timeout");
}
} catch (IOException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}

輸出結果

1
2
17:43:47.340 [main] INFO com.godzilla.Test - ping 10 times
17:43:48.352 [main] INFO com.godzilla.Test - timeout

獲取輸入、輸出和錯誤流

要獲取子進程的執行輸出,可以使用Process類的getInputStream()。類似的有getOutputStream()getErrorStream()

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
try {
log.info("ping");
Process p = Runtime.getRuntime().exec("ping -n 1 127.0.0.1");
p.waitFor();
BufferedReader bw = new BufferedReader(new InputStreamReader(p.getInputStream(), "GBK"));
String line = null;
while ((line = bw.readLine()) != null) {
System.out.println(line);
}
bw.close();
log.info("done")
} catch (IOException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}

註意,GBK是Windows平臺的字元編碼。
輸出結果

1
2
3
4
5
6
7
8
9
10
18:28:21.396 [main] INFO com.godzilla.Test - ping

正在 Ping 127.0.0.1 具有 32 位元組的數據:
來自 127.0.0.1 的回覆: 位元組=32 時間<1ms TTL=128

127.0.0.1 的 Ping 統計信息:
數據包: 已發送 = 1,已接收 = 1,丟失 = 0 (0% 丟失),
往返行程的估計時間(以毫秒為單位):
最短 = 0ms,最長 = 0ms,平均 = 0ms
18:28:21.444 [main] INFO com.godzilla.Test - done

這裡牽涉到一個技術細節,參考Process類的javadoc

1
2
3
4
5
6
7
8
9
10
11
12
* <p>By default, the created subprocess does not have its own terminal
* or console. All its standard I/O (i.e. stdin, stdout, stderr)
* operations will be redirected to the parent process, where they can
* be accessed via the streams obtained using the methods
* {@link #getOutputStream()},
* {@link #getInputStream()}, and
* {@link #getErrorStream()}.
* The parent process uses these streams to feed input to and get output
* from the subprocess. Because some native platforms only provide
* limited buffer size for standard input and output streams, failure
* to promptly write the input stream or read the output stream of
* the subprocess may cause the subprocess to block, or even deadlock.

翻譯過來是,子進程預設沒有自己的stdin、stdout、stderr,涉及這些流的操作,到會重定向到父進程。由於平臺限制,可能導致緩衝區消耗完了,導致阻塞甚至死鎖!

網上有的說法是,開啟2個線程,分別讀取子進程的stdout、stderr。
不過,既然說是By default,就是有非預設的方式,其實就是使用ProcessBuilder類,重定向流。此功能從java7開始支持。

ProcessBuilder和redirect

1
2
3
4
5
6
7
8
try {
log.info("ping");
Process p = new ProcessBuilder().command("ping -n 1 127.0.0.1").start();
p.waitFor();
log.info("done")
} catch (IOException | InterruptedException e) {
e.printStackTrace();
}

輸出結果

1
2
3
4
5
6
7
8
9
10
19:01:53.027 [main] INFO com.godzilla.Test - ping
java.io.IOException: Cannot run program "ping -n 1 127.0.0.1": CreateProcess error=2, 系統找不到指定的文件。
at java.lang.ProcessBuilder.start(ProcessBuilder.java:1048)
at com.godzilla.Test.main(Test.java:13)
Caused by: java.io.IOException: CreateProcess error=2, 系統找不到指定的文件。
at java.lang.ProcessImpl.create(Native Method)
at java.lang.ProcessImpl.<init>(ProcessImpl.java:386)
at java.lang.ProcessImpl.start(ProcessImpl.java:137)
at java.lang.ProcessBuilder.start(ProcessBuilder.java:1029)
... 1 more

此處有坑:ProcessBuilder的command列表要用字元串數組或者list形式傳入! ps. 在小程式項目上,一開始把ffmpeg -i a.mp3 b.wav傳入ProcessBuilder,卻看不到生成的wav文件,查了日誌CreateProcess error=2, 系統找不到指定的文件。還以為是ffmpeg路徑問題。後來查了api才發現掉坑了。
正確的寫法

1
Process p = new ProcessBuilder().command("ping", "-n", "1", "127.0.0.1").start();

剛纔說的重定向問題,可以這樣寫

1
2
3
Process p = new ProcessBuilder().command("ping", "-n", "1", "127.0.0.1")
.redirectError(new File("stderr.txt"))
.start();

工作目錄

預設子進程的工作目錄繼承於父進程。可以通過ProcessBuilder.directory()修改。

一些代碼細節

ProcessBuilder.Redirect

java7增加了ProcessBuilder.Redirect抽象,實現子進程的流重定向。Redirect類有個Type枚舉

1
2
3
4
5
6
7
public enum Type {
PIPE,
INHERIT,
READ,
WRITE,
APPEND
};

其中

  • PIPE: 表示子流程IO將通過管道連接到當前的Java進程。 這是子進程標準IO的預設處理。
  • INHERIT: 表示子進程IO源或目標將與當前進程的相同。 這是大多數操作系統命令解釋器(shell)的正常行為。

對於不同類型的Redirect,覆蓋下麵的方法

  • append
  • appendTo
  • file
  • from
  • to

Runtime.exec()的實現

Runtime類的exec()底層也是用ProcessBuilder實現

1
2
3
4
5
6
7
public Process exec(String[] cmdarray, String[] envp, File dir)
throws IOException {
return new ProcessBuilder(cmdarray)
.environment(envp)
.directory(dir)
.start();
}

ProcessImpl

Process的底層實現類是ProcessImpl。
上面講到流和Redirect,具體在ProcessImpl.start()方法

1
2
3
FileInputStream  f0 = null;
FileOutputStream f1 = null;
FileOutputStream f2 = null;

然後是一堆繁瑣的if…else判斷是Redirect.INHERIT、Redirect.PIPE,是輸入還是輸出流。

總結

  • Process類是java對進程的抽象。ProcessImpl是具體的實現。
  • Runtime.getRuntime().exec()和ProcessBuilder.start()都能啟動子進程。Runtime.getRuntime().exec()底層也是ProcessBuilder構造的
  • Runtime.getRuntime().exec()可以直接消費一整串帶空格的命令。但是ProcessBuilder.command()必須要以字元串數組或者list形式傳入參數
  • 預設子進程的執行和父進程是非同步的。可以通過Process.waitFor()實現阻塞等待。
  • 預設情況下,子進程和父進程共用stdin、stdout、stderr。ProcessBuilder支持對流的重定向(since java7)
  • 流的重定向,是通過ProcessBuilder.Redirect類實現。

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • Ural 1250 Sea Burial 題解 [TOC] 題意 給定一個$n\times m$的地圖,$.$為水,$\ $為陸,地圖的外部是水(地圖被水包圍)。水為八連通,陸為四聯通。聯通的水稱為海,聯通的陸稱為島。海內可能有島,島內可能有海。給定$x,y$求在包含$(x,y)$(保證$(x,y) ...
  • 一、前言 承接 "《Spring源碼解析——創建bean》" 、 "《Spring源碼解析——創建bean的實例》" ,我們今天接著聊聊,迴圈依賴的解決方案,即創建bean的ObjectFactory。 二、ObjectFactory 這段代碼不是很複雜,但是很多人不是太理解這段代碼的作用,而且,這 ...
  • 10.8 修改表、複製表、刪除表 10.81 修改表 alter table 10.82 複製表 10.83 刪除表 10.9 單表查詢 10.91 where過濾 10.92 group by分組 group_concat (不能做中間結果)、concat 、concat_ws 、as 10.93 ...
  • 一、 基本內容 1. 定義:AJAX(Asynchronous Javascript And XML)翻譯成中文就是“非同步的Javascript和XML”,即使用Javascript語言與伺服器進行非同步交互,傳輸的數據為XML(當然,傳輸的數據不只是XML) 2. 作用:AJAX就是使用 js 技術 ...
  • 任務要求: 在控制臺中提示輸入石頭、剪刀、布,按回車鍵,然後給出游戲結果。 分析: 我們知道在游戲規則中,石頭克剪刀,剪刀克布,布克石頭。但是這在電腦中並不是很好直接的表示,因此我們分別用0、1、2分別代表游戲中的石頭剪刀布。 那麼電腦該如何出拳呢?那就該用到python中的一個模塊random中 ...
  • Day02 一,while while也稱為無限迴圈、死迴圈 while 條件: 縮進 迴圈體 break -- 必須在while迴圈使用 braek -- 終止當前迴圈,且其下方的代碼不會執行。 while True: print(' ') print('西北玄天一片雲,') print('烏鴉落 ...
  • 第一章 一、Python簡介 python2: 源碼不統一,有重覆 (更新維護到2020年) python3: 源碼統一,無重覆 python2:python2中print不用,print "內容" python3:Python3中print必須用括弧括起來,print("內容") python2: ...
  • 運算符:進行特定操作的符號。例:+ 表達式:用運算符連的式子叫做表達式,例:1+2 1.四則運算: 加:+ 減:- 乘:* 除:/ 被除數 / 除數 = 商 .... 餘數 對於一個整數的表達式來說,除法用的是整除。結果仍為整數。只看商。不看餘數 只有對於整數的除法來,取模運算符才有餘數的意義 註意 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...