如何使用 Java 运行时的“cd”命令?
2022-08-31 17:30:21
我创建了一个独立的java应用程序,其中我尝试使用Ubuntu 10.04终端中的“cd”命令更改目录。我使用了以下代码。
String[] command = new String[]{"cd",path};
Process child = Runtime.getRuntime().exec(command, null);
但是上面的代码给出了以下错误
Exception in thread "main" java.io.IOException: Cannot run program "cd": java.io.IOException: error=2, No such file or directory
任何人都可以告诉我如何实现它吗?