System Commands - Java

后端 未结 4 2054
南方客
南方客 2020-12-21 23:43

I\'m trying to make a little java program that executes a system command but I can\'t seem to figure it out

The question is how does one execute a system command us

4条回答
  •  温柔的废话
    2020-12-22 00:05

    Apache Commons-Exec is similar to ProcessBuilder, but helps avoid a lot of common problems with the streams, process timeout, platform differences, etcetera. I recommend using that instead of ProcessBuilder.

提交回复
热议问题