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 erroros.write(command.getBytes());os.writeBytes(COMMAND_LINE_END);os.flush();}os.writeBytes(COMMAND_EXIT);os.flush();result = process.waitFor();// get command resultif (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>*/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代码引用自:Trinea


小实例

是否root

public Boolean isRooted(){CommandResult cmdResult = ShellUtils.execCommand("su", true);if (cmdResult.errorMsg.equals("Permission denied") || cmdResult.result != 0) {return false;}else{return true;}
}

复制文件

String[] commands = new String[] { "mount -o rw,remount /system", "cp /mnt/sdcard/xx.apk /system/app/" };public boolean copyFile(String[] cmdText){CommandResult cmdResult = ShellUtils.execCommand(cmdText, true);if (cmdResult.errorMsg.equals("Permission denied") || cmdResult.result != 0) {return false;}else{return true;}
}

我暂时就举这两个例子,只要你会Shell,什么操作都是可以的。


博客名称:王乐平博客

博客地址:http://blog.lepingde.com

CSDN博客地址:http://blog.csdn.net/lecepin


这里写图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/401714.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【iHMI43 4.3寸液晶模块】demo例程(版本1.02)发布

技术论坛&#xff1a;http://www.eeschool.org 博客地址&#xff1a;http://xiaomagee.cnblogs.com 官方网店&#xff1a;http://i-board.taobao.com 银杏科技 GINGKO TECH. 保留权利&#xff0c;转载请注明出处 一、简介&#xff1a; 1、iHMI43 演示程序(版本号&#xff1a;1…

Android 数据存储之文件存储小记

前言 Android操作文件的方式和JAVA I/O操作是十分类似的&#xff0c;在这个我小谈一下。 Android写入文件 在Android中Context类提供了openFileOutput()方法&#xff0c;用于文件写入。默认存储路径为/data/data/<package name>/files/中。 openFileOutput原型&#x…

Android 数据存储之SharedPreferences存储小记

前言 Android的数据存储机制中还提供了SharedPreferences&#xff0c;SharedPreferences是这其中最容易理解的数据存储技术&#xff0c;采用键值对的方式进行存储&#xff0c;而且支持存储多中数据类型。 获取SharedPreferences对象 SharedPreferences文件存放在/data/data/&…

Jackson、JSON-lib、Gson性能对比

2019独角兽企业重金招聘Python工程师标准>>> 近日做一些性能优化工作&#xff0c;在挑选JSON类库时&#xff0c;发现除了一般常用的JSON-lib外&#xff0c;还有一款号称性能最快的JSON处理器Jackson&#xff0c;于是用上了刚学会的JMeter&#xff0c;对这两个类库进…

IP地址定位器

软件截图 软件说明 软件名称&#xff1a;IP地址定位器 软件版本&#xff1a; 1.0 软件说明&#xff1a;当我们想通过IP具体到街道甚至门牌号&#xff0c;该怎么办&#xff1f;&#xff1f;&#xff1f;特开发IP地址定位器&#xff0c;结合高精度IP定位&#xff0c;可以通过I…

[题解]RQNOJ PID85 三个袋子

链接&#xff1a;http://www.rqnoj.cn/problem/85 思路&#xff1a;一个排列问题&#xff0c;递推式很简单&#xff0c;f(n1)3*f(n)-1 &#xff0c;由此可以推出通项公式&#xff0c;f(n)0.5*3^(n-1)0.5 。 但是这个数太大了&#xff0c;我们需要求的是f(n) mod K 。那么就必须…

CSS3媒体查询(@media)详细总结和Responsive浅谈

引言 一直想对CSS3的媒体查询和Responsive进行一下记录和总结&#xff0c;今天拿出点时间来做一下。 媒体查询的历史 随着浏览器终端的多样化&#xff0c;无法保证一个网页在不同的设备上呈现出想同的结果&#xff0c;所以Media Query诞生了&#xff0c;让一个页面适用不同的终…

华为路由交换VRRP配置

VRRP配置学习目的了解网络负载均衡的功能和作用理解VRRP协议的工作原理掌握三层交换环境单组VRRP的配置方法掌握VRRP认证配置方法掌握VRRP跟踪接口的配置方法掌握使用VRRP实现负载均衡的配置方法拓扑图场景你是公司的网络管理员。当前的网络中有两个用户。用R2、R3标注为公司用…

CSS使用网络字体(@font-face)详析

前言 以前在给网页文字设置一些好看的字体时&#xff0c;限于用户系统是否安装此字体&#xff0c;而只能使用三种方法解决&#xff0c;要么用通用字体&#xff0c;要么用图片替换文本&#xff0c;要么用Flash。而这几种方法却存在严重的缺陷。 现在好了&#xff0c;font-face终…

HTML5 requestAnimationFrame( ) 动画API

简介 当用JS做动画效果时&#xff0c;一般用setTimeout()或setInterval()来进行动画效果的制作&#xff0c;现在好了&#xff0c;出现了一个专门用于处理动画的API——requestAnimationFrame()&#xff0c;表意为“请求动画帧”。 用法 基本语法&#xff1a; requestAnimati…

Canvas三种动态画圆实现方法说明

前言 canvas是HTML5出来的绘图API容器&#xff0c;对于图形的处理非常强大&#xff0c;下面使用canvas配合JavaScript来做一下动态画圆效果。可以用它来做圆形进度条来使用。 这里我个人总结了3种实现方法&#xff0c;大家可以参考一下。 方法一&#xff1a;arc()实现画圆 效…

微软Visual Studio 14 CTP 2 发布

对于在微软阵营下进行工作的团队来说&#xff0c;拥有最新版本的Visual Studio是提高效率最佳的选择&#xff0c;没有之一。 在本文中&#xff0c;我们就上个月发布的Visual Studio "14" CTP1和昨天发布的Visual Studio "14" CTP2进行详细发布说明梳理&…

CSS3 FlexBox布局入门简析

前言 你们还在仅仅使用块、行内、表格、定位等传统布局方式进行网页的布局吗&#xff1f; 告诉你们一个新的布局模式&#xff0c;CSS3中新引入的FlexBox布局&#xff0c;布局方式十分灵活&#xff0c;含有优秀和惊奇的新特性&#xff0c;而且在主流浏览器上的兼容也不错&…

Canvas制作动态进度加载水球

前言 之前看到一些球型的动态加载的效果&#xff0c;一直想自己动手做一个&#xff0c;正好这段时间重温了一个Canvas&#xff0c;所以就尝试了一下。 样式预览 height"342" width"100%" scrolling"no" title"动态进度水球" src"…

微信小程序入门一: 简 介、文本、事件、样式

现在微信小程序已经推出了&#xff0c;我也来这里尝一下鲜。 小程序简介 原生APP和Web APP谁是未来的主流这个命题争了很多年&#xff0c;而原生APP最大的优势也就是对于系统控件接口和框架的调用能力比Web APP不知道高到哪里去。虽然京东同时提供了手机APP和手机H5形式的页面…

微信小程序入门二: 条件、遍历、网络请求、获取本地图片

实例内容 条件渲染数据遍历网络请求获取本地图片 实例一&#xff1a; 条件渲染 如果motto为Hello World&#xff0c;则输出你好世界&#xff0c;否则原样输出。 这里是分支条件判断&#xff0c;直接在视图文件里修改&#xff0c;修改index.wxml <text wx:if"{{mott…

CSS3视窗单位vw、vh、vmin、vmax说明

vw、vh做为CSS3中的新单位&#xff0c;已经出来挺久的了&#xff0c;这里也我个人也做一下详细的总结。 说明 vw、vh、vmin和vmax是CSS3中的新单位&#xff0c;是一种视窗单位&#xff0c;也是相对单位。它们的大小都是由视窗大小来决定的&#xff0c;单位1&#xff0c;代表类…

PHP的SQL注入技术实现以及预防措施

为什么80%的码农都做不了架构师&#xff1f;>>> SQL 攻击&#xff08;SQL injection&#xff0c;台湾称作SQL资料隐码攻击&#xff09;&#xff0c;简称注入攻击&#xff0c;是发生于应用程序之数据库层的安全漏洞。简而言之&#xff0c;是在输入的字符串之中注入S…

微信小程序入门三: 简易form、本地存储

实例内容 登陆界面处理登陆表单数据处理登陆表单数据&#xff08;异步&#xff09;清除本地数据 实例一: 登陆界面 在app.json中添加登陆页面pages/login/login&#xff0c;并设置为入口。 保存后&#xff0c;自动生成相关文件&#xff08;挺方便的&#xff09;。 修改视图文…

微信小程序入门四: 导航栏样式、tabBar导航栏

实例内容 导航栏样式设置tabBar导航栏 实例一&#xff1a;导航栏样式设置 小程序的导航栏样式在app.json中定义。 这里设置导航&#xff0c;背景黑色&#xff0c;文字白色&#xff0c;文字内容测试小程序 app.json内容&#xff1a; {"pages":["pages/index…