Hi I am trying to run a project in eclipse and am getting the runtime error:

Exception in thread "main" java.lang.UnsatisfiedLinkError: mywrapperclass.nativemethod()V

I only get the error code when I call a native method in the wrapper class from my main. I have looked around on many forums and blogs/websites and haven't been able to fix this. Debug and my browsing have me led me to thinking that the problem lies in the project not being able to find the native methods within the dll.

I had a lot of trouble getting eclipse to find the .dll and eventually solved this by placing the dll in the system32 folder.

Thanks in advance

link|improve this question
feedback

2 Answers

Project > Properties > Java Build Path

Click on the arrow of the JAR that needs the DLL library.

Native library location

You have to specify the location of the DLL library.

link|improve this answer
Where would I find the JAR that needs the DLL in the Java Build Path window? Is it under the source tab? In the source window i see my projectname/src, which i have then opened to find native library locatinon, and then have specified to the .dll location and none of the directories I have tried have worked – Trevor Elsbree Aug 26 '11 at 23:02
feedback

Easiest way to bundle the dlls with eclipse plugin is

create a folder structure under the plugin like this "os/win32/x86" for x86 architecture and place your dlls there.

and load the libraries like this in your plugin code System.loadLibrary("Dll name");

link|improve this answer
It seems to find my dll it just cant access the native methods it needs to find...does it need the .exp .lib .pdb files with it? They all exist in the project alongside one another... – Trevor Elsbree Aug 26 '11 at 23:26
feedback

Your Answer

 
or
required, but never shown

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