我只是想弄清楚是否/如何让 Java Robot 类将焦点从正在运行的 java 应用程序更改为特定进程,例如 ms word 或 firefox。
谢谢!
机器人不能自动做到这一点。您可以按照上面的建议通过 alt-tab 激活另一个应用程序,但您需要知道要激活的应用程序的 z 顺序。我认为要真正做到最好,您需要获取要激活的顶级窗口的窗口句柄 (hWnd)(如果这是 Windows 应用程序),然后使用 Windows user32 库函数激活所需的窗口。为此,我建议使用JNA作为最简单的方法之一(与 JNI 相比)。您必须首先下载 JNA jna.jar 和 platform.jar jar 文件,并将它们放在您的类路径中,然后您就可以轻松调用大多数操作系统方法。例如,我刚刚为 Windows 应用程序启动并运行了这种东西,我可以根据窗口名称(完整或部分)获取正在运行的顶级 Windows 应用程序的 hWnd,然后使用该 hWnd,调用 user32's setForegroundWindow 函数。如果您想激活 Windows 应用程序并想进一步追求这一点,请对此答案发表评论,我可以向您展示我为此拥有的代码。如果是这样,您将需要更详细地了解您正在尝试做什么。
祝你好运!
对于我刚刚在 Google 中遇到的任何问题:
public class activate {
public interface User32 extends W32APIOptions {
User32 instance = (User32) Native.loadLibrary("user32", User32.class,
DEFAULT_OPTIONS);
boolean ShowWindow(HWND hWnd, int nCmdShow);
boolean SetForegroundWindow(HWND hWnd);
HWND FindWindow(String winClass, String title);
int SW_SHOW = 1;
}
public static void main(String[] args) {
User32 user32 = User32.instance;
HWND hWnd = user32.FindWindow(null, "Downloads"); // Sets focus to my opened 'Downloads' folder
user32.ShowWindow(hWnd, User32.SW_SHOW);
user32.SetForegroundWindow(hWnd);
}
}
信用: http: //www.coderanch.com/t/562454/java/java/FindWindow-ShowWindow-SetForegroundWindow-effect-win
您没有指定系统,在 Mac 上,可以使用 AppleScript 来完成。AppleScript 已集成到系统中,因此它始终可以正常工作。 https://developer.apple.com/library/content/documentation/AppleScript/Conceptual/AppleScriptLangGuide/reference/ASLR_cmds.html
您只需要检测到您在 mac 上并具有应用程序的名称。
Runtime runtime = Runtime.getRuntime();
String[] args = { "osascript", "-e", "tell app \"Chrome\" to activate" };
Process process = runtime.exec(args);