62,621
社区成员
发帖
与我相关
我的任务
分享Runtime rt = Runtime.getRuntime();
Process proc = rt.exec("cmd /k wmic process list brief");
OutputStreamWriter os = new OutputStreamWriter(proc.getOutputStream());
os.write("dir \n");
os.flush();
os.close();