1 2 3 4 5 6 7 8 9 10 11 12 |
import java.awt.Robot; import java.awt.event.KeyEvent; public class Robots { public static void main(String[] args) throws Exception { Robot r = new Robot(); r.keyPress(KeyEvent.VK_WINDOWS); r.keyRelease(KeyEvent.VK_WINDOWS); } } |