I have 'xxx.dll' file along with a couple of other dlls at the location -
'C:\Program Files (x86)\abc\xyz\Librerias'
trying to load this dll file in my project using
System.loadLibrary("xxx");
added this path to 'Native library location' in JRE System Library in Configure Build Path but still the line trying to load this dll is throwing 'UnsatisfiedLinkError'.
I even tried but still same error remains.
System.load("C:/Program Files (x86)/abc/xyz/Librerias/xxx.dll");
I do have latest version of 32-bit JRE and JDK added in my system path and I am using a 64-bit machine.