我有一个窗口的窗口。我需要获得有关该过程的其他信息,如CPU%,内存名称等。
我怎样才能得到它?
答案 0 :(得分:1)
考虑使用Java Native Access。从here下载jna.jar和platform.jar。
您可能已经注意到我们可以使用 user32.dll 中的GetWindowThreadProcessId从窗口句柄获取pid。然后我们可以在 kernel32.dll 中使用OpenProcess来获取指向该进程的指针。然后the bunch of APIs中的GetProcessMemoryInfo和 psapi.dll 中的GetModuleBaseName可以帮助您从该流程对象和GetProcessTimes获取流程信息> kernel32.dll 可以返回cpu使用情况。 GetProcessMemoryInfo
包含名为PROCESS_MEMORY_COUNTERS 的结构,需要Structure in JNA才能处理。
static class Kernel32 {
static { Native.register("kernel32"); }
public static int PROCESS_QUERY_INFORMATION = 0x0400;
public static int PROCESS_VM_READ = 0x0010;
public static native int GetLastError();
public static native Pointer OpenProcess(int dwDesiredAccess, boolean bInheritHandle, Pointer pointer);
public static native boolean GetProcessTimes(Pointer hProcess, int lpCreationTime,int LPFILETIME lpExitTime, int lpKernelTime, int lpUserTime
}
static class Psapi {
static { Native.register("psapi"); }
public static native int GetModuleBaseNameW(Pointer hProcess, Pointer hmodule, char[] lpBaseName, int size);
...
}
static class User32DLL {
static { Native.register("user32"); }
public static native int GetWindowThreadProcessId(HWND hWnd, PointerByReference pref);
public static native int GetWindowTextW(HWND hWnd, char[] lpString, int nMaxCount);
}
PointerByReference pointer = new PointerByReference();
GetWindowThreadProcessId(yourHandle, pointer);
Pointer process = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, false, pointer.getValue());
GetModuleBaseNameW(process, null, buffer, MAX_TITLE_LENGTH);
System.out.println("Active window process: " + Native.toString(buffer));