我正在开发一个 Java 应用程序,我需要以编程方式打开 Windows 开始菜单。
我为此搜索了 cmd 命令,但没有找到解决方案。
您可以尝试使用Robot
该类来模拟 Win 键上的按键。
一种方法是通过 Windows shell。
尝试这样做:
set wShell=wscript.createobject("wscript.shell")
wShell.sendkeys "^{ESC}"
Set WshShell = Nothing
通过使用此处概述的方法-> http://www.javaquery.com/2011/02/how-to-execute-microsft-windowss-shell.html