我正在编写一个简单的代码,它使用 java 中的任务列表仅显示“控制台”类型的进程的名称。
由于此代码中的字符串索引越界错误,我无法这样做。我使用了索引 36 到 43,因为在这些代码中,我在输出代码期间获得了进程类型,我们使用任务列表打印所有进程。进程名称的 0 到 30 也是如此。
请帮我解决一下这个。
import java.io.*;
public class process_name
{
public static void main(String []args)
{
try {
int i;
String line,pn,pt;
pn="";
Process p = Runtime.getRuntime().exec(System.getenv("windir") +"\\system32\\"+"tasklist.exe");
BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()));
while ((line = input.readLine()) != null)
{
pt=line.substring(36,43);
if(pt.equals("Console"))
{
pn=line.substring(0,30);
System.out.println(pn);
}
System.out.println();
}
input.close();
}
catch (Exception err)
{
err.printStackTrace();
}
}
}