I need to write a java code that watches the applications. Whenever the user starts an applications (game, IE, Office…) it should write down the name of the application and the date it just started.
Is this doable in Java? Can anyone provide me with some code hints?
Note that am using a windows machine.
I need to write a java code that watches the applications. Whenever the user
Share
No, this is not doable in pure Java. It requires calling OS APIs, which can be done in Java by using JNI or (better) JNA, but Java is not really a good option for doing this kind of things.