gpt4 book ai didi

java - 识别流程的操作

转载 作者:太空宇宙 更新时间:2023-11-04 11:59:15 25 4
gpt4 key购买 nike

我正在开发一个系统监控工具,它显示进程及其操作。我能够通过执行tasklist.exe来检索进程列表进程ID等。这是我尝试过的。

 try {
String line;
Process p = Runtime.getRuntime().exec(System.getenv("windir") + "\\system32\\" + "tasklist.exe");
BufferedReader input
= new BufferedReader(new InputStreamReader(p.getInputStream()));
while ((line = input.readLine()) != null) {
System.out.println(line); //<-- Parse data here.
}

input.close();
} catch (Exception err) {
err.printStackTrace();
}

我的要求是找到这个过程的操作。请参阅示例屏幕截图。

我尝试过java api 文档。 api中提到了6个方法。但它们都没有提供有关流程中的子流程或操作的信息。

enter image description here

就像附图中一样,我想检索任务的操作列表。非常感谢任何帮助。

谢谢。

最佳答案

使用 Java 无法完成此操作。对此没有任何方法。

关于java - 识别流程的操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41088573/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com