JNA - Set resource Path
问题 I am trying to set up JNA to talk to a custom DLL i have but to no avail It keeps saying it is looking in the resource path in the lcoation /target/classes/ I was wondering is it possible to add a resource location where it can pick up my DLL? My code is as follows System.setProperty("jna.debug_load", "true"); System.setProperty("jna.debug_load.jna", "true"); System.setProperty("jna.platform.library.path", "C:\\Development\\dll\\"); Native.loadLibrary("customDLL", CustomDLL.class); If I