I want to load DLL library to work with it but I have a little problem with this message
java.lang.UnsatisfiedLinkError: C:\xx\xx.dll: Can't load this .dll (machine code=0xbd) on a AMD 64-bit platform
and this is the code that i used to load my DLL library
String arch = System.getProperty(ARCH_OS_CONSTANT);
if (arch.equals("32")) {
System.load("C:\\..\\xx.dll");
} else if (arch.equals("64")) {
System.load("C:\\xx\\xx.dll");
}
and still have the same problem and I hope that I've found a solution thanks