I am going to research on which key typed most in which hour in a 24-hour-day? Later, I would research on which word used most in which hour in a 24-hour-day?
Say in the evening you would find most used word good or bye as people usually ends up their meeting in the evening.
So, I need to record keystrokes on the background using a java
application with a time-stamp.
My questions are:
- How to run a
java
program on the background?(Obviously informing the user). - How to record keystrokes which are used in other applications and counted in the
java
application without affecting its original application?
Note that:
This question does not serve my problem. Though it has an accepted answer, but the answer is not helpful for me because it could not distinguish between uppercase and lowercase letter, it returns same ASCII character. It just gave some sources and some other files. I expect more readable answer and a clear view how the java program launch on the start up and run on the background.