找出Java中关注的应用程序(窗口)
我想知道如何编写一个Java程序,知道哪个Windows应用程序是重点。我可以打开许多窗口,但我想知道正在使用的窗口(就像现在我正在键入此窗口时的Google Chrome一样)。
我不需要更改窗口或应用程序中的任何内容,只需要知道它的名称即可。
我想知道如何编写一个Java程序,知道哪个Windows应用程序是重点。我可以打开许多窗口,但我想知道正在使用的窗口(就像现在我正在键入此窗口时的Google Chrome一样)。
我不需要更改窗口或应用程序中的任何内容,只需要知道它的名称即可。
由于其他人已经指向,因此没有便携式方法可以在所有平台上获得它。但更糟糕的是:在MS Windows上甚至没有一致的方式。我将提供一些代码来解决不同平台的问题,并指出限制。使用风险自负,代码可能会提供错误的结果或由于安全原因而根本无法运行。如果它在您的计算机上运行,并不意味着它将在其他计算机上运行同样好。
该代码使用 JNA。在我的实验中,我在使用不同版本的JNA和JNA平台库时遇到了问题。最好自己编译它,这样您就有一个一致的环境。
kichik提供的答案在当时是正确的,但并非在所有情况下都适用于Windows 8。问题是,它将无法正确处理Metro应用程序。不幸的是,目前没有稳定的API来获取当前运行的Metro应用程序的名称。我已经在代码中插入了一些提示,但最好等到Microsoft为您提供API。
在 Windows 上,特权应用和 UAC 对话框也会出现问题。所以你不会总是得到一个正确的答案。
public interface Psapi extends StdCallLibrary {
Psapi INSTANCE = (Psapi) Native.loadLibrary("Psapi", Psapi.class);
WinDef.DWORD GetModuleBaseNameW(Pointer hProcess, Pointer hModule, byte[] lpBaseName, int nSize);
}
if (Platform.isWindows()) {
final int PROCESS_VM_READ=0x0010;
final int PROCESS_QUERY_INFORMATION=0x0400;
final User32 user32 = User32.INSTANCE;
final Kernel32 kernel32=Kernel32.INSTANCE;
final Psapi psapi = Psapi.INSTANCE;
WinDef.HWND windowHandle=user32.GetForegroundWindow();
IntByReference pid= new IntByReference();
user32.GetWindowThreadProcessId(windowHandle, pid);
WinNT.HANDLE processHandle=kernel32.OpenProcess(PROCESS_VM_READ | PROCESS_QUERY_INFORMATION, true, pid.getValue());
byte[] filename = new byte[512];
Psapi.INSTANCE.GetModuleBaseNameW(processHandle.getPointer(), Pointer.NULL, filename, filename.length);
String name=new String(filename);
System.out.println(name);
if (name.endsWith("wwahost.exe")) { // Metro App
// There is no stable API to get the current Metro app
// But you can guestimate the name form the current directory of the process
// To query this, see:
// http://stackoverflow.com/questions/16110936/read-other-process-current-directory-in-c-sharp
}
使用 X11,我们有三个问题:
在 X11 上,查询当前具有焦点的窗口更有意义。
public interface XLib extends StdCallLibrary {
XLib INSTANCE = (XLib) Native.loadLibrary("XLib", Psapi.class);
int XGetInputFocus(X11.Display display, X11.Window focus_return, Pointer revert_to_return);
}
if(Platform.isLinux()) { // Possibly most of the Unix systems will work here too, e.g. FreeBSD
final X11 x11 = X11.INSTANCE;
final XLib xlib= XLib.INSTANCE;
X11.Display display = x11.XOpenDisplay(null);
X11.Window window=new X11.Window();
xlib.XGetInputFocus(display, window,Pointer.NULL);
X11.XTextProperty name=new X11.XTextProperty();
x11.XGetWMName(display, window, name);
System.out.println(name.toString());
}
Mac OS X不关注Windows,而是关注应用程序。因此,请求当前活动的应用程序是有意义的。较旧版本的 Mac OS X 提供多个桌面。较新版本可以同时打开多个全屏应用程序。因此,您可能并不总是得到正确的答案。
if(Platform.isMac()) {
final String script="tell application \"System Events\"\n" +
"\tname of application processes whose frontmost is tru\n" +
"end";
ScriptEngine appleScript=new ScriptEngineManager().getEngineByName("AppleScript");
String result=(String)appleScript.eval(script);
System.out.println(result);
}
当我使用这个代码时,它在最基本的情况下工作。但是,如果您希望此代码可靠运行,则必须进行大量润色。自己决定是否值得。
为了使代码完整,以下是我使用的导入部分:
import com.sun.jna.Native;
import com.sun.jna.Platform;
import com.sun.jna.Pointer;
import com.sun.jna.platform.unix.X11;
import com.sun.jna.platform.win32.Kernel32;
import com.sun.jna.platform.win32.User32;
import com.sun.jna.platform.win32.WinDef;
import com.sun.jna.platform.win32.WinNT;
import com.sun.jna.ptr.IntByReference;
import com.sun.jna.win32.StdCallLibrary;
import javax.script.ScriptEngine;
import javax.script.ScriptEngineManager;
import javax.script.ScriptException;
当然,您将不得不重新排列代码的各个部分。我使用了一个大类,接口在开头 a,然后在一个大主方法中的其余部分。