Send string from java (or other platform) to application

Posted by MrSnowflake on Stack Overflow See other posts from Stack Overflow or by MrSnowflake
Published on 2010-03-10T12:13:39Z Indexed on 2010/03/12 11:07 UTC
Read the original article Hit count: 177

Filed under:
|

I want to send a barcode, read with my cellphone, to my computer. My computer has a simple server running, which listens to barcodes. When a barcode arrives, the server app should be able to input the value of the received barcode into the active application (I don't really care which application is going to get the input, the user should be able to select gedit, a terminal window or the browser if they choose to).

My language at the moment is Java on GNU/Linux (Ubuntu), so I know about the Robot class. But the Robot class emulates a keyboard, which means: when you send VK_1 on a US keyboard layout, the output is '1' indeed, but when you send VK_1 on another layout (like belgian, which I use), which requires shift for the '1' key, the output is '&' (this is the character on the '1' key, when you don't hold shift).

I also found xsendkeys, but this application too requires you to specify whether you need to hold shift. So it will be able to send an 'a' but for an 'A' (thus capital) you need to specify you want to hold shift with your 'a'.

Isn't there an easy way to do this, for GNU/Linux and Windows, just using strings. I want to be able to send "12a68dd" to the active application. And I also would like to be able to send UTF-8 characters to the active application.

I have been looking for a solution, but most require the breakdown in multiple keystrokes, which are often dependent on the keyboard layout.

© Stack Overflow or respective owner

Related posts about java

Related posts about keyboard