发布网友 发布时间:2022-04-23 08:52
共2个回答
热心网友 时间:2022-06-18 15:25
Android-java调用命令行的命令可以使用Runtime类实现。
比如定义执行命令的方法:
public void execCommand(String command) throws IOException {
Runtime runtime = Runtime.getRuntime(); //申明runtime
Process proc = runtime.exec(command); //开始执行命令
try {
if (proc.waitFor() != 0) { //执行完成
System.err.println("exit value = " + proc.exitValue());
}
BufferedReader in = new BufferedReader(new InputStreamReader(
proc.getInputStream()));
StringBuffer stringBuffer = new StringBuffer();
String line = null;
while ((line = in.readLine()) != null) {
stringBuffer.append(line+"-");
}
//打印缓冲区
System.out.println(stringBuffer.toString());
} catch (InterruptedException e) {
System.err.println(e);
}
}
调用方法:
// 按钮点击事件
public void execute(View v) {
try {
execCommand("ls");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
热心网友 时间:2022-06-18 15:26
我共享份代码 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 是否有文件在去操作