gpt4 book ai didi

linux - Linux 中的 Tasklist.exe 等价物

转载 作者:太空宇宙 更新时间:2023-11-04 09:51:48 24 4
gpt4 key购买 nike

我想在 Ubuntu Linux 中开发一个任务管理器。我在 Eclipse 中运行的 Windows 中有一个任务管理器。我得到了输出。但是在Linux中,“tasklist.exe”查找正在运行的进程的等效方法是什么?

请帮帮我..

最佳答案

ps -ef 会让你运行所有的任务

man ps 将为您提供所有选项

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class psef
{

public static void main(String args[]) throws Exception
{

try
{
String line;
Process p = Runtime.getRuntime().exec("ps -ef");
BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()));
while ((line = input.readLine()) != null)
{
System.out.println(line);
}
input.close();
}
catch (Exception err)
{
err.printStackTrace();
}
}
}

关于linux - Linux 中的 Tasklist.exe 等价物,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10204433/

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