该代码列出 Windows 下当前运行的所有进程
import
java.io.*;
public class ListProcess {
public
static void main(String[] args) throws
IOException
{
Runtime runtime =
Runtime.getRuntime();
String cmds[] = {"cmd", "/c",
"tasklist"};
Process proc =
runtime.exec(cmds);
InputStream inputstream =
proc.getInputStream();
InputStreamReader inputstreamreader = new
InputStreamReader(inputstream);
BufferedReader bufferedreader =
new BufferedReader(inputstreamreader);
String
line;
while ((line = bufferedreader.readLine()) !=
null)
{
System.out.println(line);
}
}
}
教程大全
来源:http://www.huiyi8.com/jiaocheng/
相关文章
- 07-25Windows排查java代码CPU占用过高的问题
- 07-25linux的java程序jdbc连接数据库慢,windows系统连接正常
- 07-25Cygwin专用Bash函数:findport,查看Windows系统占用某端口的进程或服务,并一键停止
- 07-25在Windows系统上实现轻量级的线程间及进程间消息队列
- 07-25Windows系统查看各个进程网速的软件(查看网速工具)
- 07-25Windows系统查看端口占用的程序并杀掉进程
- 07-25Android系统进程间通信(IPC)机制Binder中的Server启动过程源代码分析
- 07-25在linux安装redis单机和集群后,如何在windows上使用redis客户端或者java代码访问错误的原因很简单,就是没有连接上redis服务,由于redis采用的安全策略,默认会只准许本地访问。需要通过简单配置,完成允许外网访问。
- 07-25java工具类,在Windows,Linux系统获取电脑的MAC地址、本地IP、电脑名
- 07-25关于windows2008r2系统80端口被system进程占用的问题