我需要检查java程序中是否正在运行非java进程(按进程名称) - 非常类似于Java - how to check whether another (non-Java) process is running on Linux中的问题。
解决方案还可以,但仍需要打开系统调用流程,我想避免这种情况
是否有一种纯java方法来获取linux上正在运行的进程列表?
答案 0 :(得分:4)
在Java 9及更高版本中,有一个标准的API来解决这个问题ProcessHandle
。这是一个例子:
public class ps {
public static void main(String[] args) {
ProcessHandle.allProcesses()
.map(p -> p.getPid()+": "+p.info().command().orElse("?"))
.forEach(System.out::println);
}
}
它打印所有进程的pid和命令行(如果已知)。适用于Windows和Linux。
答案 1 :(得分:2)
可能的解决方案可能是探索 proc 条目。实际上,这就是top
和其他人访问正在运行的进程列表的方式。
我不完全确定这是否是你想要的,但它可以给你一些线索:
import java.awt.Desktop;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
public class OpenFolder {
public static void main(String[] args) throws IOException {
System.out.println(findProcess("process_name_here"));
}
public static boolean findProcess(String processName) throws IOException {
String filePath = new String("");
File directory = new File("/proc");
File[] contents = directory.listFiles();
boolean found = false;
for (File f : contents) {
if (f.getAbsolutePath().matches("\\/proc\\/\\d+")) {
filePath = f.getAbsolutePath().concat("/status");
if (readFile(filePath, processName))
found = true;
}
}
return found;
}
public static boolean readFile(String filename, String processName)
throws IOException {
FileInputStream fstream = new FileInputStream(filename);
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
String strLine;
strLine = br.readLine().split(":")[1].trim();
br.close();
if (strLine.equals(processName))
return true;
else
return false;
}
}
答案 2 :(得分:-1)
不,没有纯java方式如何做到这一点。其原因可能是,流程是与平台相关的概念。请参阅How to get a list of current open windows/process with Java?(您可以在那里找到有关Linux的有用提示)