有没有办法以编程方式在 android 上运行 shell 命令?
- 2024-10-14 08:40:00
- admin 原创
- 67
问题描述:
有没有办法在我的应用程序上运行终端命令,然后访问我的 UI 上的数据?具体来说top
。
解决方案 1:
以日志收集器为例。以下是相关文件。
关键在于:
ArrayList<String> commandLine = new ArrayList<String>();
commandLine.add("logcat");//$NON-NLS-1$
[...]
Process process = Runtime.getRuntime().exec(commandLine);
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(process.getInputStream()));
解决方案 2:
好吧,这正是对我有用的东西,以防将来有人需要它......:)
尝试并捕获
try {
Process process = Runtime.getRuntime().exec("top -n 1 -d 1");
BufferedReader in = new BufferedReader(new InputStreamReader(process.getInputStream()));
} catch (InterruptedException e) {
e.printStackTrace();
}
解决方案 3:
我们可以按如下方式执行命令,我成功了......!试试这个,这里我们需要指定命令的完整路径。要获取命令的完整路径,请在你的终端(android)输入
*$ 哪个 ls
/系统/bin*
try {
// Executes the command.
Process process = Runtime.getRuntime().exec("/system/bin/ls /sdcard");
// Reads stdout.
// NOTE: You can write to stdin of the command using
// process.getOutputStream().
BufferedReader reader = new BufferedReader(
new InputStreamReader(process.getInputStream()));
int read;
char[] buffer = new char[4096];
StringBuffer output = new StringBuffer();
while ((read = reader.read(buffer)) > 0) {
output.append(buffer, 0, read);
}
reader.close();
// Waits for the command to finish.
process.waitFor();
return output.toString();
} catch (IOException e) {
throw new RuntimeException(e);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
解决方案 4:
这还取决于您在终端中运行的内容...如果您在文件上运行“cat”,您也可以这样做。
final private String MEM_FILE = "/proc/meminfo";
public Long readMem() {
String[] segs;
FileReader fstream;
try {
fstream = new FileReader(MEM_FILE);
} catch (FileNotFoundException e) {
Log.e("readMem", "Could not read " + MEM_FILE);
return false;
}
BufferedReader in = new BufferedReader(fstream, 500);
String line;
try {
while ((line = in.readLine()) != null) {
if (line.indexOf("MemTotal:") > 0) {
Log.e("MemTotal", line);
segs = line.trim().split("[ ]+");
memTotal = Long.parseLong(segs[1]);
}
if (line.indexOf("MemFree:") > 0) {
Log.e("MemFree", line);
segs = line.trim().split("[ ]+");
memFree = Long.parseLong(segs[1]);
}
}
updateMem(); //call function to update textviews or whatever
return true;
} catch (IOException e) {
Log.e("readMem", e.toString());
}
return false;
}
编辑:Android 实验室项目中有一个完美的例子,名为 netmeter。有一个名为 Top.java 的类实际上完全符合您的要求,并且它用于 TaskList.java 中显示。http:
//code.google.com/p/android-labs/source/browse/#svn/trunk/NetMeter/src/com/google/android/netmeter
解决方案 5:
对于 Kotlin 爱好者,你可以使用以下内容
fun executeShell() {
val command: String = "top -n 1"
try {
val process: Process = Runtime.getRuntime().exec(command)
// Read the lines using BufferedReader
BufferedReader(InputStreamReader(process.inputStream)).forEachLine {
// Do something on each line read
Log.d(this::class.java.canonicalName, "$it")
}
} catch (e: InterruptedException) {
Log.w(this::class.java.canonicalName, "Cannot execute command [$command].", e)
} catch (e: Exception) {
Log.e(this::class.java.canonicalName, "Cannot execute command [$command].", e)
}
}
您甚至不必担心关闭缓冲区,因为forEachLine扩展函数会处理它。
相关推荐
热门文章
项目管理软件有哪些?
- 2024年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 项目管理必备:盘点2024年13款好用的项目管理软件
热门标签
云禅道AD