使用 Runtime.getRuntime().exec 从定义的目录中执行文件
我只想从特定文件夹执行我的文件。在我的情况下 /data/data/my-package/files/.所以我试过了:
Process process2=Runtime.getRuntime().exec("cd /data/data/my-package/files/");
process2.waitFor();
process2=Runtime.getRuntime().exec("./myfile");
它不起作用。任何人都可以告诉我请正确的方法来做到这一点。谢谢