我正在开发Java应用程序,我需要以编程方式打开Windows“开始”菜单。
我为此搜索了cmd命令,但我找不到解决方案。
答案 0 :(得分:5)
您可以尝试使用Robot
类来模拟Win键上的按键。
答案 1 :(得分:1)
一种方法是通过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