-1

我正在开发一个 Java 应用程序,我需要以编程方式打开 Windows 开始菜单。

我为此搜索了 cmd 命令,但没有找到解决方案。

4

2 回答 2

5

您可以尝试使用Robot该类来模拟 Win 键上的按键。

于 2012-07-22T08:21:10.113 回答
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

于 2012-07-22T08:28:46.170 回答