package com.TaskManager;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
public class CMDExecute{
/*
* args[0]:shell鍛戒护 濡�ls"鎴�ls -l";
* args[1]:鍛戒护鎵ц璺緞 濡�/";
*/
private String execute(String[] cmmand,String directory)throws IOException{
String result="";
ProcessBuilder builder=new ProcessBuilder(cmmand);
if(directory!=null){
builder.directory(new File(directory));
builder.redirectErrorStream(true);
Process process=builder.start();
//寰楀埌shell鍛戒护,鎵ц鍚庣殑缁撴灉
InputStream is=process.getInputStream();
byte[] buffer=new byte[1024];
while(is.read(buffer)!=-1){
result=result+new String(buffer);
}
is.close();
}
return result;
}
//鎵ц"top -n l"鍛戒护
public String getProcesRunningInfo(){
String[] args={"/system/bin/top","-n","1"};
String result="";
try {
result = execute(args, "/system/bin/");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return result;
}
//鎵цkill鍛戒护
public String killProcess(String pid){
String[] args={"kill",pid,"9"};
String result="";
try {
result=execute(args, "/system/bin/");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return result;
}
}
分享到:
相关推荐
关键在于实现运行系统命令并获取结果,这部分代码在CMDExecute类中得以体现。 CMDExecute类的核心功能是运行指定的系统命令,并捕获其输出。在Java代码中,使用了ProcessBuilder类来构建并启动命令行进程。例如,...
CMDExecute cmdexe = new CMDExecute(); try { String[] args = {"/system/bin/cat", "/proc/version"}; result = cmdexe.run(args, "/system/bin/"); } catch(IOException ex) { ex.printStackTrace(); } ...
操作系统版本的获取已经在代码段中展示,其他信息如CPU信息通常存在于/proc/cpuinfo文件中,同样可以通过`CMDExecute`类执行`cat /proc/cpuinfo`命令获取。内存信息则可以读取/proc/meminfo文件。网络设置信息通常...
最后,`main()`函数启动串口初始化并进入无限循环,不断调用`cmdexecute()`处理接收到的命令。 总的来说,这个程序实现了基于C语言的单片机与Modbus通信协议交互的功能。通过中断服务子程序,它能够实时解析接收到...
1. public class CMDExecute { 2. public synchronized String run ( String [] cmd,String workdirectory) 3. throws IOException { 4. String result = “ ” ; 5. try { 6. processBuilder builder = new ...
- `m_DataSource`, `m_Session`, `m_CmdExecute`, `m_CmdQuery` 分别是数据源、会话、执行SQL命令和查询命令的对象,它们是 OLE_DB API 的核心组成部分。 - `hInstance` 用于获取错误信息的句柄。 通过这个封装后...