Java auto typer with robot class?

3.2k Views Asked by At

Hi i was wondering if there is a way i can make an auto typer by using the robot class? Is there a way i could make a string into char[] and type out each letter? anyway i could use a case for each letter (Example below).

        case ' ': key = "VK_SPACE"; shiftOn = false; break;
        case 'a': key = "VK_A"; shiftOn = false;    break;
        case 'b': key = "VK_B"; shiftOn = false;    break;
        case 'c': key = "VK_C"; shiftOn = false;    break;
        case 'd': key = "VK_D"; shiftOn = false;    break;
        case 'e': key = "VK_E"; shiftOn = false;    break;
        case 'f': key = "VK_F"; shiftOn = false;    break;
        case 'g': key = "VK_G"; shiftOn = false;    break;
        case 'h': key = "VK_H"; shiftOn = false;    break;
        case 'i': key = "VK_I"; shiftOn = false;    break;
        case 'j': key = "VK_J"; shiftOn = false;    break;
        case 'k': key = "VK_K"; shiftOn = false;    break;
        case 'l': key = "VK_L"; shiftOn = false;    break;

etc...

2

There are 2 best solutions below

1
On

With a little help from the code here:

    Thread.sleep(2000); // Give me time to open up notepad
    Robot r = new Robot();
    for (char c : "I like playing with fire, and Java.".toCharArray()) {
        int code = KeyEvent.getExtendedKeyCodeForChar(c);
        if (Character.isUpperCase(c))
            r.keyPress(KeyEvent.VK_SHIFT);
        r.keyPress(code);
        r.keyRelease(code);
        if (Character.isUpperCase(c))
            r.keyRelease(KeyEvent.VK_SHIFT);
    }

You'll have to do a little more work to get characters like !@#$%&*()_+ to work.

0
On

If you're working with several keyboard layouts, the solution is to paste each character with some clipboard action and Ctrl + V key presses; or else, you may get buggy results such as not being able to type in slashes in Brazilian keyboards (a problem I had a while ago). If not, you can use sbat's solution. Mine is just a workaround the fact that key codes aren't the same in all keyboards, but it works slower because of that (I think).

public static void paste(String text) throws Exception {
    Robot rob = new Robot(); //Robot for typing
    Clipboard c = Toolkit.getDefaultToolkit().getSystemClipboard(); //Clipboard
    old = (String) c.getData(DataFlavor.stringFlavor); //Clipboard contents before function
    for (int i = 0; i < text.length(); i++) {
        c.setContents(new StringSelection("" + text.charAt(i)), null); //Set clipboard

        //Ctrl + V
        rob.keyPress(KeyEvent.VK_CONTROL); 
            rob.keyPress(KeyEvent.VK_V);
            rob.keyRelease(KeyEvent.VK_V);
        rob.keyRelease(KeyEvent.VK_CONTROL);
    }
    c.setContents(new StringSelection(old), null); //Restore old clipboard contents
}