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

