Javaを使用して「adb」コマンドを実行したい。私は次のように試しました:
Process p = Runtime.getRuntime().exec(new String[]{"cmd","/c","adb devices"});
しかし、次のエラーが発生しますp.getErrorStream()
:
'adb' is not recognized as an internal or external command,operable program or batch file.
「adbデバイス」間のスペースに問題はありますか?
コマンドにスペースを追加するにはどうすればよいですか?