Android中调用shell脚本

大致需求是这样:app中assert文件下有一些配置文件,脚本文件,要求在开机启动后,将assert下的文件拷贝到手机中,并执行shell脚本文件。

监听开机广播的不多说。
提供如下方法:


    /***
     * 将文件拷贝到某个目录下,要赋予这个目录相应的权限
     * @param pkgCodePath
     * @return
     */
    private boolean upgradeRootPermission(String pkgCodePath) {
        Process process = null;
        DataOutputStream os = null;
        try {
            String cmd = "chmod 777 " + pkgCodePath;
            process = Runtime.getRuntime().exec("su"); // 切换到root帐号
            os = new DataOutputStream(process.getOutputStream());
            os.writeBytes(cmd + "\n");
            os.writeBytes("exit\n");
            os.flush();
            process.waitFor();
        } catch (Exception e) {
            return false;
        } finally {
            try {
                if (os != null) {
                    os.close();
                }
                process.destroy();
            } catch (Exception e) {
            }
        }
        return true;
    }

    /**
     * 拷贝文件
     * @param context
     * @param oldPath
     * @param newPath
     */
    private void copyData(Context context, String oldPath, String newPath) {
        InputStream in = null;
        FileOutputStream out = null;
        File file = new File(newPath);
        if (!file.exists()) {
            try {
                Log.d(TAG, "inStream: -------->>>>>>.");
                in = context.getAssets().open(oldPath); // 从assets目录下复制
                Log.d(TAG, "inStream: .");
                upgradeRootPermission("/data");//拷贝到data目录下,data目录必须给出相应的权限
                out = new FileOutputStream(file);
                int length = -1;
                byte[] buf = new byte[1024];
                while ((length = in.read(buf)) != -1) {
                    out.write(buf, 0, length);
                }
                out.flush();

            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                if (in != null) {
                    try {
                        in.close();
                    } catch (IOException e1) {
                        e1.printStackTrace();
                    }
                }
                if (out != null) {
                    try {
                        out.close();
                    } catch (IOException e1) {
                        e1.printStackTrace();
                    }
                }
            }
        }
    }

同时给大家提供一个调用shell脚本的工具类

package com.example.administrator.test;
import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.List;




public class ShellUtils {

    public static final String COMMAND_SU = "su";
    public static final String COMMAND_SH = "sh";
    public static final String COMMAND_EXIT = "exit\n";
    public static final String COMMAND_LINE_END = "\n";

    public ShellUtils() {
        throw new AssertionError();
    }

    /**
     * check whether has root permission
     * 
     * @return
     */
    public static boolean checkRootPermission() {
        return execCommand("echo root", true, false).result == 0;
    }

    /**
     * execute shell command, default return result msg
     * 
     * @param command
     *            command
     * @param isRoot
     *            whether need to run with root
     * @return
     * @see ShellUtils#execCommand(String[], boolean, boolean)
     */
    public static CommandResult execCommand(String command, boolean isRoot) {
        return execCommand(new String[] { command }, isRoot, true);
    }

    /**
     * execute shell commands, default return result msg
     * 
     * @param commands
     *            command list
     * @param isRoot
     *            whether need to run with root
     * @return
     * @see ShellUtils#execCommand(String[], boolean, boolean)
     */
    public static CommandResult execCommand(List<String> commands,
            boolean isRoot) {
        return execCommand(
                commands == null ? null : commands.toArray(new String[] {}),
                isRoot, true);
    }

    /**
     * execute shell commands, default return result msg
     * 
     * @param commands
     *            command array
     * @param isRoot
     *            whether need to run with root
     * @return
     * @see ShellUtils#execCommand(String[], boolean, boolean)
     */
    public static CommandResult execCommand(String[] commands, boolean isRoot) {
        return execCommand(commands, isRoot, true);
    }

    /**
     * execute shell command
     * 
     * @param command
     *            command
     * @param isRoot
     *            whether need to run with root
     * @param isNeedResultMsg
     *            whether need result msg
     * @return
     * @see ShellUtils#execCommand(String[], boolean, boolean)
     */
    public static CommandResult execCommand(String command, boolean isRoot,
            boolean isNeedResultMsg) {
        return execCommand(new String[] { command }, isRoot, isNeedResultMsg);
    }

    /**
     * execute shell commands
     * 
     * @param commands
     *            command list
     * @param isRoot
     *            whether need to run with root
     * @param isNeedResultMsg
     *            whether need result msg
     * @return
     * @see ShellUtils#execCommand(String[], boolean, boolean)
     */
    public static CommandResult execCommand(List<String> commands,
            boolean isRoot, boolean isNeedResultMsg) {
        return execCommand(
                commands == null ? null : commands.toArray(new String[] {}),
                isRoot, isNeedResultMsg);
    }

    /**
     * execute shell commands
     * 
     * @param commands
     *            command array
     * @param isRoot
     *            whether need to run with root
     * @param isNeedResultMsg
     *            whether need result msg
     * @return <ul>
     *         <li>if isNeedResultMsg is false, {@link CommandResult#successMsg}
     *         is null and {@link CommandResult#errorMsg} is null.</li>
     *         <li>if {@link CommandResult#result} is -1, there maybe some
     *         excepiton.</li>
     *         </ul>
     */
    public static CommandResult execCommand(String[] commands, boolean isRoot,
            boolean isNeedResultMsg) {
        int result = -1;
        if (commands == null || commands.length == 0) {
            return new CommandResult(result, null, null);
        }

        Process process = null;
        BufferedReader successResult = null;
        BufferedReader errorResult = null;
        StringBuilder successMsg = null;
        StringBuilder errorMsg = null;

        DataOutputStream os = null;
        try {
            process = Runtime.getRuntime().exec(isRoot ? COMMAND_SU : COMMAND_SH);
            os = new DataOutputStream(process.getOutputStream());
            for (String command : commands) {
                if (command == null) {
                    continue;
                }

                // donnot use os.writeBytes(commmand), avoid chinese charset
                // error
                os.write(command.getBytes());
                os.writeBytes(COMMAND_LINE_END);
                os.flush();
            }
            os.writeBytes(COMMAND_EXIT);
            os.flush();

            result = process.waitFor();
            // get command result
            if (isNeedResultMsg) {
                successMsg = new StringBuilder();
                errorMsg = new StringBuilder();
                successResult = new BufferedReader(new InputStreamReader(
                        process.getInputStream()));
                errorResult = new BufferedReader(new InputStreamReader(
                        process.getErrorStream()));
                String s;
                while ((s = successResult.readLine()) != null) {
                    successMsg.append(s);
                }
                while ((s = errorResult.readLine()) != null) {
                    errorMsg.append(s);
                }
            }
        } catch (IOException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if (os != null) {
                    os.close();
                }
                if (successResult != null) {
                    successResult.close();
                }
                if (errorResult != null) {
                    errorResult.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }

            if (process != null) {
                process.destroy();
            }
        }
        return new CommandResult(result, successMsg == null ? null
                : successMsg.toString(), errorMsg == null ? null
                : errorMsg.toString());
    }

    /**
     * result of command
     * <ul>
     * <li>{@link CommandResult#result} means result of command, 0 means normal,
     * else means error, same to excute in linux shell</li>
     * <li>{@link CommandResult#successMsg} means success message of command
     * result</li>
     * <li>{@link CommandResult#errorMsg} means error message of command result</li>
     * </ul>
     * 
     * @author <a href="http://www.trinea.cn" target="_blank">Trinea</a>
     *         2013-5-16
     */
    public static class CommandResult {

        /** result of command **/
        public int result;

        /** success message of command result **/
        public String successMsg;

        /** error message of command result **/
        public String errorMsg;

        public CommandResult(int result) {
            this.result = result;
        }

        public CommandResult(int result, String successMsg, String errorMsg) {
            this.result = result;
            this.successMsg = successMsg;
            this.errorMsg = errorMsg;
        }
    }
}

调用的方法非常简单:
ShellUtils.CommandResult result = ShellUtils.execCommand(your command,是否root);

当然还有一些第三方的库可是可以进行shell脚本调用,
福利:https://commons.apache.org/proper/commons-exec/
具体调用方法请参考官网api。

  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
### 回答1: 在Android执行shell脚本可以通过Java的`Runtime`类和`ProcessBuilder`类来实现。下面是一个简单的示例: ```java try { String[] cmd = {"su", "-c", "your_shell_script.sh"}; Process process = Runtime.getRuntime().exec(cmd); // 可以通过process对象的getInputStream和getErrorStream来获取脚本的输出和错误信息 int exitCode = process.waitFor(); // 等待脚本执行完成 if (exitCode == 0) { // 脚本执行成功 } else { // 脚本执行失败 } } catch (IOException e) { e.printStackTrace(); } catch (InterruptedException e) { e.printStackTrace(); } ``` 以上代码,`su -c`是用来获取root权限执行脚本的命令,`your_shell_script.sh`是你要执行的shell脚本文件名。 需要注意的是,如果你的设备没有root权限,那么使用`su`命令执行脚本可能会失败。此外,还需要事先为你的应用程序获取`android.permission.WRITE_EXTERNAL_STORAGE`权限,以便能够读取和执行存储在设备上的脚本文件。 ### 回答2: 在Android系统,可以通过编写代码执行shell脚本。执行shell脚本可以调用系统命令或执行一系列命令来完成特定任务。以下是在Android执行shell脚本的一般步骤: 1. 获取Shell对象:通过Runtime.getRuntime().exec()方法获取Shell对象。这个方法可以运行指定的命令,并返回一个表示进程的Process对象。 2. 获取输入输出流:通过Process对象获取输入输出流。可以使用getInputStream()方法来获取命令执行结果的输入流,使用getOutputStream()方法来获取命令的输出流。 3. 编写Shell脚本:编写要执行的Shell脚本。可以使用Shell脚本的语法和命令来完成特定任务。 4. 执行脚本命令:将Shell脚本写入输出流,并通过flush()方法刷新输出流。脚本命令将被传递给Shell进程执行。 5. 读取执行结果:通过输入流读取Shell脚本执行的结果。可以使用BufferedReader来读取输入流的内容。 6. 关闭流和Shell进程:执行完脚本命令后,需要关闭输入输出流,并通过Process对象的destroy()方法来终止Shell进程。 注意事项:在执行Shell脚本时,需要注意权限的问题。一些高级的Shell命令可能需要root权限才能执行。因此,如果需要执行需要root权限的Shell脚本,需要确保设备已经root了,或者应用已经获取了root权限。 在Android开发,执行Shell脚本可以方便地完成一些底层操作和自动化任务。但要谨慎使用,确保脚本的安全性和正确性,以免对系统造成损害。 ### 回答3: 在Android系统,可以使用Java代码执行Shell脚本。下面是一段简单的示例代码: ```java import java.io.BufferedReader; import java.io.DataOutputStream; import java.io.InputStreamReader; public class ShellExecutor { public static void main(String[] args) { runShellCommand("ls -la"); } private static void runShellCommand(String command) { try { Process process = Runtime.getRuntime().exec("su"); DataOutputStream outputStream = new DataOutputStream(process.getOutputStream()); BufferedReader inputStream = new BufferedReader(new InputStreamReader(process.getInputStream())); outputStream.writeBytes(command + "\n"); outputStream.flush(); outputStream.writeBytes("exit\n"); outputStream.flush(); process.waitFor(); String line; StringBuilder output = new StringBuilder(); while ((line = inputStream.readLine()) != null) { output.append(line).append("\n"); } System.out.println("Output: " + output.toString()); } catch (Exception e) { e.printStackTrace(); } } } ``` 上述代码的`runShellCommand`方法可以用来执行Shell脚本命令。我们使用`Runtime.getRuntime().exec("su")`来获取Shell的root权限,然后通过`DataOutputStream`向Shell输入命令并执行。最后通过`BufferedReader`读取Shell的输出结果,并将结果保存在`output`字符串。 以上是一个简单的示例,你可以根据自己的需求修改代码,执行不同的Shell命令。例如,你可以使用`adb shell`命令来执行Shell脚本,并获取相应的输出结果。注意,在执行Shell脚本时需要确保设备已经root或者已经获得相应的权限。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值