Android-java怎么调用命令行的命令

2024-12-13 07:42:01
推荐回答(1个)
回答1:

我共享份代码 2.1 ~ 4.0 测试都能通过

/** 执行 shell 命令之后返回 String 类型的结果 */

public static StringexecShellStr(String cmd)

{

String[] cmdStrings = new String[] {"sh", "-c", cmd};

String retString = "";

try

{

Process process = Runtime.getRuntime().exec(cmdStrings);

BufferedReader stdout =

new BufferedReader(new InputStreamReader(

process.getInputStream()), 7777);

BufferedReader stderr =

new BufferedReader(new InputStreamReader(

process.getErrorStream()), 7777);

String line = null;

while ((null != (line = stdout.readLine()))

|| (null != (line = stderr.readLine())))

{

if (false == isStringEmpty(line))

{

retString += line + "\n";

}

}

}

catch (Exception e)

{

e.printStackTrace();

}

return retString;

}
ps: 如果你在应用里面执行 shell,是以应用的用户来执行,如果是特殊的目录,需要root权限的,也就是先执行 su ,在执行你的命令
而,如果通过 adb 执行 shell 的话,上来就是一个终端用户(或者 root) 所以可能上来就有很高的权限
另外,看一下 /mnt/sdcard 是否有文件在去操作