简体   繁体   中英

call c++ dll from java

I am using c dll in java, I want to load c Dll in java, I use JNA library but I get error “Exception in thread "main" java.lang.UnsatisfiedLinkError: The application has failed to start because its side-by-side configuration is incorrect.”, please tell me how can I solve my problem, if you have another solution please guidance me.

import com.sun.jna.Native;

public class ConectorTJna {

    public static void main(String args[]) {
        IConectorT lib = (IConectorT) Native.loadLibrary("add", IConectorT.class);
        int teste=lib.add(4, 5);
        System.out.println("RESULT: " + teste);
    }
}

You're probably missing some DLL required by your add.dll . Try to check in the Event viewer -> Windows Logs -> Application to see if there is more info in here.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM