vote up 2 vote down star

My goal is to create a system monitoring application using Java. I would like to know when a user is doing activity on a Windows PC. The result would be something like this:

8:00 - 8:15 activity

9:12 - 10:29 activity

12:24 - 15:34 activity

I'm not interested in any other information (which key was pressed, application used, etc.). Only user activity.

Is this even possible in Java? I plan to run my java application as a service. But as for getting events when a user uses the computer, I have no idea where to start.


[Edit] Further clarifications: I'm not interested in the details of the activity, only that a user has moved the mouse or pressed a key. I don't care which key was pressed, as long as I know that a key was pressed in an application somewhere. I also don't care for any other activity except key pressed and mouse movement (for example, I am not interested if a USB key is inserted in a USB port).

flag

could you edit your sample output and substitute "activity" with what you actually want to see? – Oscar Reyes Mar 20 at 18:48
I don't want more detail than "activity". I am not interested to know the type of activity. Just that "something happened". – Eldimo Mar 20 at 19:47
Self-Contradictory - Once you say "I'm not interested in any other information (key pressed, application used, etc.)." Then you say "I also don't care for any other activity except key pressed and mouse movement" – talonx Mar 21 at 6:50
Changed "key pressed" to "which key was pressed. I was not clear enough. – Eldimo Mar 21 at 19:37

4 Answers

vote up 1 vote down check

You cannot monitor user activity directly from a service. The service will be running in a different window station from the users activities and so will have no way to hook into that activity (except through filter drivers that would need to be written in C).

So you will need a client application that runs in the user's desktop and hooks into the keyboard and mouse activity. You would do that via two calls to the Windows API SetWindowsHookEx (for low level keyboard and mouse hooks) using JNI. To monitor activity the application would then need to process the keyboard and mouse hooks for messages.

You could launch the application as auto-start by adding an entry to the registry's Run key or you could have your service monitor for session log on events and launch the application from it. Then the user session application could either process the information itself or pass it to the service via a pipe or socket.

link|flag
Thanks. After search on Google, I did find some JNI code that uses SetWindowsHookEx () to do what I'm looking for. – Eldimo Mar 23 at 20:26
vote up 1 vote down

You could try this SWT Win32 Extension. It allows you to set keyboard and mouse hooks from java on windows.

link|flag
vote up 0 vote down

This is not directly supported by the java platform

It would be a lot easier if you explore a .NET alternative.

Search for Capture global user input in .net

link|flag
vote up 1 vote down

What exactly do you mean by 'user activity'? You need to define that term precisely first to even start thinking of a solution, especially as you say that "key pressed, application used, etc." are not activities.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.