java.lang.UnsatisfiedLinkError: _$57405

I got this error when I was trying to access the Dynamic Link Library:( I use Oracle JDeveloper3.2.3)

Here is my code :

class LocProfUtil

{

public static void GetLoggedUser()

{

try

{

System.loadLibrary("LocProfUtil");

(new LocProfUtil()).GetUser();

}

catch(UnsatisfiedLinkError e)

{

e.printStackTrace() ;

}

}

private native void GetUser();

}

This LocProfUtil.dll is generated by other people.

If I package .jar, .dll together, and run the executable, I don't get this error.

Now, I can't run the project from IDE, which makes me difficult to debug my code.

Anybody can help?

thanks

[734 byte] By [xinxinw] at [2007-9-26 10:27:23]
# 1
The error quite simply is because it cant find the dll you are referring to.Somewhere in the options there must be a provision to set the directory where it looks for files. Make sure your dir is in that.
dewangs at 2007-7-1 22:42:42 > top of Java-index,Java HotSpot Virtual Machine,Specifications...