I know how to have Robot simulate a Y keypress like so:
Robot.keyPress(KeyEvent.VK_Y);
But how do I get Robot to press a quote and period?:
".
Can anyone provide me some reference page or sample code?
|
If you wanted to use Robot, KeyEvent has VK_QUOTE and VK_PERIOD constants. All of these constants and more are available through the KeyEvent API |
|||||||
|
|
You can't always just use the KeyEvent.VK... variable. For example on my keyboard the "%" character is above the "5". To use a Robot to type a "5", the code would be:
and use a Robot to type a "%", the code would be:
|
|||
|
|
|
What do you mean by "programmatically type these characters?" You can use a backslash (
Output:
|
|||
|
|
Your question is not clear, but to print the characters you can use a stream using the following snippet as a template: System.out.println("\"."); |
|||
|
|
robot? – Matt Ball Jul 10 '11 at 15:38