我想创建可以使用以下方法自动键入的程序:
robot.keyPress(code);
robot.keyRelease(code);
但我不能按任何特殊字符,它会抛出Exception
:
Exception in thread "main" java.lang.IllegalArgumentException: Invalid key code
at sun.awt.windows.WRobotPeer.keyPress(Native Method)
at java.awt.Robot.keyPress(Unknown Source)
at mypkg.GooglePiano.type(GooglePiano.java:65)
at mypkg.GooglePiano.<init>(GooglePiano.java:45)
at mypkg.GooglePiano.main(GooglePiano.java:16)
我想输入: http: //google.com/ ?q=pratik+butani但它只打印http。
请帮我