Android开发中使用LinuxShell实例详解

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

Android开发中使⽤LinuxShell实例详解Android 开发中使⽤Linux Shell实例详解

引⾔

Android系统是基于Linux内核运⾏的,⽽做为⼀名Linux粉,不在Android上⾯运⾏⼀下Linux Shell怎么⾏呢?最近发现了⼀个很好的Android Shell⼯具代码,在这⾥分享⼀下。

Shell核⼼代码

import java.io.BufferedReader;

import java.io.DataOutputStream;

import java.io.IOException;

import java.io.InputStreamReader;

import java.util.List;

/**

* ShellUtils

* <ul>

* <strong>Check root</strong>

* <li>{@link ShellUtils#checkRootPermission()}</li>

* </ul>

* <ul>

* <strong>Execte command</strong>

* <li>{@link ShellUtils#execCommand(String, boolean)}</li>

* <li>{@link ShellUtils#execCommand(String, boolean, boolean)}</li>

* <li>{@link ShellUtils#execCommand(List, boolean)}</li>

* <li>{@link ShellUtils#execCommand(List, boolean, boolean)}</li>

* <li>{@link ShellUtils#execCommand(String[], boolean)}</li>

* <li>{@link ShellUtils#execCommand(String[], boolean, boolean)}</li>

* </ul>

*/

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";

private 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

相关文档
最新文档