首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Android 执行linux shell 语句有关问题

2013-11-11 
Android 执行linux shell 语句问题String [] cmd2 {/system/bin/ls, -l ,/mnt/sdcard}Runtime ru

Android 执行linux shell 语句问题
String [] cmd2 = {"/system/bin/ls", "-l" ,"/mnt/sdcard"};
Runtime runtime = Runtime.getRuntime();
Process proc = runtime.exec(cmd2);

这样就相当于在/mnt/sdcard目录下执行了ls -l 指令吗?
那我如果要执行“ls -l -r”这种多几个参数的语句应该怎么写啊?
[解决办法]
好像没有-r参数
参数合并

Runtime runtime = Runtime.getRuntime();
Process proc = runtime.exec("/system/bin/ls -al /mnt/sdcard");

热点排行