gpt4 book ai didi

java - 最小化所有应用程序

转载 作者:行者123 更新时间:2023-12-03 22:52:48 26 4
gpt4 key购买 nike

我正在尝试最小化所有打开的应用程序,并使用以下代码:

public class Test {
public static void main(String args[]) throws Exception{
Runtime.getRuntime().exec
(new String[] {
"cmd.exe",
"/c",
"\"" + System.getenv("APPDATA") +
"\\Microsoft\\Internet Explorer\\Quick Launch\\Show Desktop.scf" + "\""
});
}
}

当我运行代码时,没有任何反应。

我使用的是 Windows 7,当我打开 Internet Explorer 时,PC 因某些病毒原因崩溃(可能有连接?)

最佳答案

这是一种显示桌面的方法,使用 Java 的 Robot 类。
此类模拟鼠标和键盘输入。

    Robot robot = new Robot();
robot.keyPress(KeyEvent.VK_WINDOWS);
robot.keyPress(KeyEvent.VK_D);
robot.keyRelease(KeyEvent.VK_D);
robot.keyRelease(KeyEvent.VK_WINDOWS);

关于java - 最小化所有应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21855082/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com