Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Code :

package keylogger;

import org.jnativehook.GlobalScreen;
import org.jnativehook.NativeHookException;
import org.jnativehook.keyboard.NativeKeyEvent;
import org.jnativehook.keyboard.NativeKeyListener;

public class GlobalKeyListenerExample implements NativeKeyListener {
    public void nativeKeyPressed(NativeKeyEvent e) {
            System.out.println("Key Pressed: " + NativeKeyEvent.getKeyText(e.getKeyCode()));

            if (e.getKeyCode() == NativeKeyEvent.VK_ESCAPE) {
                    try {
                            GlobalScreen.unregisterNativeHook(); // LINE 18
                    }
                    catch (NativeHookException ex) {
                            System.err.println("You cannot call unregisterNativeHook() from the native dispatch thread.");
                    }
            }
    }


    public void nativeKeyReleased(NativeKeyEvent e) {
            System.out.println("Key Released: " + NativeKeyEvent.getKeyText(e.getKeyCode()));
    }

    public void nativeKeyTyped(NativeKeyEvent e) {
            System.out.println("Key Typed: " + NativeKeyEvent.getKeyText(e.getKeyCode()));
    }


    public static void main(String[] args) {
            try {
                    GlobalScreen.registerNativeHook(); // LINE 38
            }
            catch (NativeHookException ex) {
                    System.err.println("There was a problem registering the native hook.");
                    System.err.println(ex.getMessage());
                    ex.printStackTrace();
            }

            //Construct the example object and initialze native hook.
            GlobalScreen.getInstance().addNativeKeyListener(new GlobalKeyListenerExample());
    }
}

This is same code as given here on google code. I downloaded and then used the JNativeHost library in my project. But i get the following errors :

Cannot find unregisterNativeHook,registerNativeHook. //(line 18,38)
The IDE also says GlobalKeyListenerExample is not abstract and doesn't override abstract method keyReleased. 

To the first error the methods are defined here and they are native methods and i also have imported the GlobalScreen class.

And why do i get the second error when i have already overrided that ? But when i add a @Override annotation before that method IDE gives an error saying the method doesn't override or implement from a supertype.

share|improve this question
Is this a compilation error you are getting? Have you added the jar to your class path? – jogabonito May 22 '12 at 6:59
I cant see the link you posted( Its blocked where I am). I copied your code and linked the library, and it works for me. Not a very helpful answer, I know :-) – jogabonito May 22 '12 at 7:16

4 Answers

up vote 2 down vote accepted

Everything is fine ! One thing that i think could be wrong is the version of the library you might be using against the code you have copied and pasted ! Use the marked library below. You can download it from here

enter image description here

From the comments i guess you are using netbeans. Add this jar file to your library.

share|improve this answer

If you are using eclipse, try starting with an empty class like this:

public class GlobalKeyListenerExample implements NativeKeyListener {
}

You should get an error on the declaration and a quick fix 'implement abstract methods' should be available. Execute the quick fix and see whether it compiles afterwards (normally it should). You can then go on and add your logic.

share|improve this answer
that is indeed a very good method ! – program-o-steve May 22 '12 at 7:28

Most possibly the method which you say you have overridden has a different signature than that exists in the base class. So, your method is not considered to be overridden but is a new overloaded version, altogether. Verify that the method signature is correct.

share|improve this answer
1  
that is the obvious reason ! but the signatures and everything is same – program-o-steve May 22 '12 at 6:46

If you are using JDK 1.5, @Override can only be used when overriding methods from base classes, not when implementing methods from interfaces.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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