Android程序中如何执行shell脚本

在做Android应用时,经常需要执行shell脚本,以快速实现某些功能;

在Android应用程序中执行shell脚本可以省去一大堆繁琐的代码,还可以避免不必要的错误;

比如:拷贝文件夹时,可以执行shell命令中的 cp 命令达到目的;而在代码中实现拷贝文件夹时,不仅需要编写一大堆繁琐的代码,还容易陷入递归死循环的错误中;

比如:获取文件系统的读写权限,只需要执行shell脚本中一句 mount -o rw,remount / 就能轻松搞定;

比如:删除文件夹下某一个文件、或者某一类文件、或者全部文件,只需要执行shell脚本中的一句 rm -f  *(利用*通配符进行匹配) 就能轻松搞定;

再比如:静默安装时,只需要执行shell脚本中一句 pm install -r 便可达到目的;

如果这些都用代码来实现,不仅代码量增加,还容易造成很多bug,吃力不讨好!


如果能在android应用中执行shell脚本来达到目的,可以省去一大堆代码,避免很多易犯的错误,简洁高效,何乐而不为呢?!


下面给出一个在Android应用中执行shell脚本的工具类的示例,供大家参考:

package com.example.test;

import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;

import android.util.Log;

/**
 * 执行shell脚本工具类
 * @author Mountain
 *
 */
public class CommandExecution {

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

	/**
	 * Command执行结果
	 * @author Mountain
	 *
	 */
	public static class CommandResult {
		public int result = -1;
		public String errorMsg;
		public String successMsg;
	}

	/**
	 * 执行命令—单条
	 * @param command
	 * @param isRoot
	 * @return
	 */
	public static CommandResult execCommand(String command, boolean isRoot) {
		String[] commands = {command};
		return execCommand(commands, isRoot);
	}

	/**
	 * 执行命令-多条
	 * @param commands
	 * @param isRoot
	 * @return
	 */
	public static CommandResult execCommand(String[] commands, boolean isRoot) {
		CommandResult commandResult = new CommandResult();
		if (commands == null || commands.length == 0) return commandResult;
		Process process = null;
		DataOutputStream os = null;
		BufferedReader successResult = null;
		BufferedReader errorResult = null;
		StringBuilder successMsg = null;
		StringBuilder errorMsg = null;
		try {
			process = Runtime.getRuntime().exec(isRoot ? COMMAND_SU : COMMAND_SH);
			os = new DataOutputStream(process.getOutputStream());
			for (String command : commands) {
				if (command != null) {
					os.write(command.getBytes());
					os.writeBytes(COMMAND_LINE_END);
					os.flush();
				}
			}
			os.writeBytes(COMMAND_EXIT);
			os.flush();
			commandResult.result = process.waitFor();
			//获取错误信息
			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);
			commandResult.successMsg = successMsg.toString();
			commandResult.errorMsg = errorMsg.toString();
			Log.i(TAG, commandResult.result + " | " + commandResult.successMsg
					+ " | " + commandResult.errorMsg);
		} catch (IOException e) {
			String errmsg = e.getMessage();
			if (errmsg != null) {
				Log.e(TAG, errmsg);
			} else {
				e.printStackTrace();
			}
		} catch (Exception e) {
			String errmsg = e.getMessage();
			if (errmsg != null) {
				Log.e(TAG, errmsg);
			} else {
				e.printStackTrace();
			}
		} finally {
			try {
				if (os != null) os.close();
				if (successResult != null) successResult.close();
				if (errorResult != null) errorResult.close();
			} catch (IOException e) {
				String errmsg = e.getMessage();
				if (errmsg != null) {
					Log.e(TAG, errmsg);
				} else {
					e.printStackTrace();
				}
			}
			if (process != null) process.destroy();
		}
		return commandResult;
	}
	
}


### 回答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或者已经获得相应的权限。
评论 7
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值