JNA UnsatisfiedLinkError, but jna.library.path is set

后端 未结 6 1542
囚心锁ツ
囚心锁ツ 2020-12-16 19:50

I\'m using the following code to load a dll in JNA (irrelevant code is left out):

    public class JNAMain {
       public interface PointShapeBuffer extends         


        
相关标签:
6条回答
  • 2020-12-16 20:13

    In my experience you usally see this error when calling 32bit native dlls from a 64bit jvm on 64bit Win7. Win7 works differently for 64bit and 32bit applications.

    On 64bit Win7 you can call functions in native 32bit dll's, but you need to use a 32bit JVM.

    1. Download and install 32bit Java Runtime Environment (JRE). You can install a 32bit and 64bit jvm on the same machine, just make sure they are installed in seperate directories.
    2. Ensure you run the 32bit JRE instead of the default 64bit JVM when you execute your program. Either A) change your CLASSPATH and JAVA_HOME environment variables to point to the 32bit jvm, or write a script to set the CLASSPATH and JAVA_HOME and launch you application.

    The reason for this is 32bit dll's are incompatible with 64bit applications, and 64bit Win7 uses a 32bit emulator to run 32bit applications. Although Windows Libraries might be called named xxxx32.dll (e.g. user32.dll) the libraries in the System32 folder on a 64bit Win7 are 64bit libraries, not 32bit, and the libraries in SysWOW64 are 32bit libraries, confusing right?!?

    You can also place the library in the 32bit system folder (SysWOW64) and make the JNI call from within a 32bit JVM.

    Check out the following link for a full explanantion as how 64bit Win7 handles libraries;

    http://www.samlogic.net/articles/32-64-bit-windows-folder-x86-syswow64.htm

    And if you really want to help yourself get to sleep, trying starting on this ;)

    http://msdn.microsoft.com/en-us/windows/hardware/gg463051.aspx

    0 讨论(0)
  • 2020-12-16 20:14

    it is may be because there is the conflation into the lebweb kit. I am not sure but that has to be that only now u can do one thing try this.

    $ dpkg -l | grep -i jna
    

    try this command and if u getting this output

    ii  libjna-java  3.2.7-4 Dynamic access of native libraries from Java without JNI
    

    or any other output then this u need to remove then that jna from the system because if program itself have jna jar with that then there is no need of system jna for the same. so do something like this.

    sudo apt-get autoremove libjna-java
    

    and try for restart that application again. it will run and it is not running then try to install new version of libwebkit-gtk.

    hope this will help. this helped me.

    0 讨论(0)
  • 2020-12-16 20:15

    You need to specify the folder containing your DLL, not the DLL's actual path.

    e.g. for baz.dll at c:\foo\bar\baz.dll, the path should be set to c:\\foo\\bar. (note in Java if you're using backspaces you'll have to escape them with backslashes)

    0 讨论(0)
  • 2020-12-16 20:18

    Like it was already mentioned in some comments: checks your Dependencies of your DLL/Library. Best Tool for this is Dependency Walker (http://www.dependencywalker.com/). Only if all your Dependencies are fulfilled, jna finds your DLL.... took me quite long to figure this out

    0 讨论(0)
  • 2020-12-16 20:21

    Change your:

    Native.loadLibrary("FileGDBAPI", PointShapeBuffer.class);
    

    to:

    Native.loadLibrary("C:\\jnadll\\FileGDBAPI.dll", PointShapeBuffer.class);
    

    If you dive into the jna source code enough you will find a nice little hook in the NativeLibrary class:

        /** Use standard library search paths to find the library. */
        private static String findLibraryPath(String libName, List searchPath) {
            //
            // If a full path to the library was specified, don't search for it
            //
            if (new File(libName).isAbsolute()) {
                return libName;
            }
            ...
    

    So it will catch if you just passed an absolute path and not even use the searchPath. This was why you dont have to worry about jna.library.lib.

    0 讨论(0)
  • 2020-12-16 20:40

    You might want to download the latest version with jna.jar and platform.jar and just include those. No need to set the path then.

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