Trying to use DLL from Java (JNA). Unable to load library exception

Karloss :

I have NetBeans project from tutorial which causes exception:

Exception in thread "main" java.lang.UnsatisfiedLinkError: Unable to load library 'simpleDLL': The specified module could not be found.

Tried to put simpleDLL.dll in project libraries, copied file in system32 folder with no success.

BackSlash :

I had exactly the same problem with loading a DLL, I solved it in this way:

  • As Christian Kuetbach said, check if the simpleDLL you are using is compatible with your processor's architecture, a 32-bit DLL won't work on a 64-bit machine, and also a 64-bit DLL won't work on a 32-bit machine.
  • If the DLL is compatible, then the problem may be in your java library path. I put my DLL into the user.dir directory and then I used this code:

    Set Java library path to user.dir or maybe another path you want:

    String myLibraryPath = System.getProperty("user.dir");//or another absolute or relative path
    
    System.setProperty("java.library.path", myLibraryPath);
    

    Load the library:

    System.loadLibrary("libraryWithoutDLLExtension");

It worked for me, try it and tell me if it works for you.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

Use SHGetFileInfo in Java with JNA

From Java

How to use C++ dlopen macro to load a library from C++ code instead from JAVA

From Java

Why 2 Path for load Library JNA

From Java

Unable to load JNA native support library Elasticsearch 6.x

From Java

Load DLL (using JNA) inside an OSGi bundle

From Java

Use C++ DLL from Java with JNA

From Java

Instantiation and Load exception when trying to use an extended version of AnchorPane

From Dev

PHP Startup Unable to load dynamic library php_mongo.dll

From Dev

SonarQube - Unable to load the Wrapper's native library 'wrapper.dll'

From Dev

Java (JNA) pass-by-reference for dll

From Dev

Unable to load shared library 'db2app64.dll'

From Dev

Azure functions runtime exception, the type initializer for system data sqlclient excetion, Unable to load DLL 'sni.dll'

From Dev

unable to load ggstatsplot library

From Dev

Can't load personal dll with jna from netbeans

From Dev

php_oci8.dll - Unable to load dynamic library

From Dev

"unable to load jna" error on Elasticsearch on Centos

From Dev

Call a function of VB DLL file from java using JNA

From Dev

Function mapping Delphi DLL with Java (JNA)

From Dev

Java JNA Mapping in Delphi Dll function

From Dev

Allocate memory error in dll called by Java JNA

From Dev

Illegal chars exception trying to load from url with HtmlAgilityPack

From Dev

Unable to load dynamic library php_ldap.dll

From Dev

Load Java JNA native library in Node

From Dev

Unable to load angularjs library

From Dev

SelectPDF .Net Core 2.2: Exception: Conversion failure. Unable to load shared library 'kernel32.dll' or one of its dependencies

From Dev

PHP Startup: Unable to load dynamic library 'php_mongodb.dll'

From Dev

Copying data from a DLL to a ByteBuffer (JNA)

From Dev

DbGeography.FromText - Unable to load DLL 'SqlServerSpatial140.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)

From Dev

Module not found, trying to use old java library

Related Related

  1. 1

    Use SHGetFileInfo in Java with JNA

  2. 2

    How to use C++ dlopen macro to load a library from C++ code instead from JAVA

  3. 3

    Why 2 Path for load Library JNA

  4. 4

    Unable to load JNA native support library Elasticsearch 6.x

  5. 5

    Load DLL (using JNA) inside an OSGi bundle

  6. 6

    Use C++ DLL from Java with JNA

  7. 7

    Instantiation and Load exception when trying to use an extended version of AnchorPane

  8. 8

    PHP Startup Unable to load dynamic library php_mongo.dll

  9. 9

    SonarQube - Unable to load the Wrapper's native library 'wrapper.dll'

  10. 10

    Java (JNA) pass-by-reference for dll

  11. 11

    Unable to load shared library 'db2app64.dll'

  12. 12

    Azure functions runtime exception, the type initializer for system data sqlclient excetion, Unable to load DLL 'sni.dll'

  13. 13

    unable to load ggstatsplot library

  14. 14

    Can't load personal dll with jna from netbeans

  15. 15

    php_oci8.dll - Unable to load dynamic library

  16. 16

    "unable to load jna" error on Elasticsearch on Centos

  17. 17

    Call a function of VB DLL file from java using JNA

  18. 18

    Function mapping Delphi DLL with Java (JNA)

  19. 19

    Java JNA Mapping in Delphi Dll function

  20. 20

    Allocate memory error in dll called by Java JNA

  21. 21

    Illegal chars exception trying to load from url with HtmlAgilityPack

  22. 22

    Unable to load dynamic library php_ldap.dll

  23. 23

    Load Java JNA native library in Node

  24. 24

    Unable to load angularjs library

  25. 25

    SelectPDF .Net Core 2.2: Exception: Conversion failure. Unable to load shared library 'kernel32.dll' or one of its dependencies

  26. 26

    PHP Startup: Unable to load dynamic library 'php_mongodb.dll'

  27. 27

    Copying data from a DLL to a ByteBuffer (JNA)

  28. 28

    DbGeography.FromText - Unable to load DLL 'SqlServerSpatial140.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)

  29. 29

    Module not found, trying to use old java library

HotTag

Archive