1. 程式人生 > >Cannot run program \"cd\": error=2, No such file or directory

Cannot run program \"cd\": error=2, No such file or directory

Cannot run program\"cd\": error=2, No such file or directory

這個錯誤是在使用Runtime.exec(command)時出現的,後來查詢網路資源後解決。

出現這個問題的原因應該和command中的特殊字元有關(可能是windows字元)

解決方法:Runtime.exec(new String[] {"/bin/sh", "-c", command})