Java Native Interface 32 bit dll on 64 bit system

前端 未结 6 1637
春和景丽
春和景丽 2020-12-01 10:18
E:\\Code\\Java\\JNITest>java test
Exception in thread \"main\" java.lang.UnsatisfiedLinkError: E:\\Code\\Java\\JNITest\\test.dll: Can\'t load IA 32-bit .dll on a          


        
相关标签:
6条回答
  • 2020-12-01 11:00

    IA is Itanium architecture so a AMD jvm is trying to load a dll that was built for Itanium...don't think that will work.

    http://en.wikipedia.org/wiki/Itanium

    0 讨论(0)
  • 2020-12-01 11:05

    You'll have to install a 32bit JVM and you will be able to run your code.

    If you are going to distribute your application, you will want to build both 32bit and 64bit versions of your DLL. Then use the following technique to have the proper DLL loaded regardless of your customers arch. Append either a 32 or a 64 (MyJniDLL32.dll & MyJniDLL64.dll) to your generated output file.

        String archDataModel = System.getProperty("sun.arch.data.model");
        System.loadLibrary(libraryName+archDataModel);
    
    0 讨论(0)
  • 2020-12-01 11:10

    Just to state the obvious: to load a native library built for a 32bit architecture, you have to force the JVM to start in 32bit mode.

    java -d32 ...
    

    Possibly you need to install an older JVM for your platform (eg. Oracle's Java 7 on OS X is 64bit only, you need to get Apple's Java 6 from their knowledge base).

    0 讨论(0)
  • 2020-12-01 11:19

    The DLLs are run by the native OS. Java simply delegates the call to DLL which is very closely knit with the OS on which its compiled. In general you cannot do it in straightforwd way and here is way.

    But there are workarounds like WOW64, which makes it possible. Please check out these links(1,2)

    0 讨论(0)
  • 2020-12-01 11:20
    1. Download mingw-w64.
    2. Update your Environment variable PATH.
    3. Create a C program named test.c which has implementation for your method.
    4. Run the following cmd in Command prompt

      gcc -Wl,--add-stdcall-alias -I"%JAVA_HOME%\include" -I"%JAVA_HOME%\include\win32" -shared -o test.dll test.c

    0 讨论(0)
  • 2020-12-01 11:21

    I got that same error message (without the stacktrace) after installing the Java plugin for the Chrome browser.

    Re-installing JDK/JRE (this is a development environment) fixed it for me.

    0 讨论(0)
提交回复
热议问题