在Java中,可以使用ProcessBuilder类来执行shell命令并返回结果。 下面是一个例子: import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class ExecuteShellCommand { public static void main(String[] args) { String command = "ls"; // 要执行的shell命令 try...