Hi,
I need help. I just don't seem to know where I am going wrong while getting this error below.
run:
Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\open_alpr_dlls\openalprjni.dll: Can't find dependent libraries
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1937)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1855)
at java.lang.Runtime.loadLibrary0(Runtime.java:870)
at java.lang.System.loadLibrary(System.java:1122)
at com.openalpr.jni.Alpr.<clinit>(Alpr.java:7)
at Main.main(Main.java:32)
Java Result: 1

This is how I have added openalprjni.dll and the other *.dlls to the lib folder in my project workspace as shown on this image

Here is my workspace from where java.lang.UnsatisfiedLinkError happens at line 32 of Main.java though I know it stems from System.loadLibrary("openalprjni"); in Alpr.java
I have also added the path C:\open_alpr_dlls\ to the java.library.path after creating another folder named open_alpr_dlls in my drive C:\ on windows and added the same *.dlls I put in lib folder of my project's workspace to it including openalprjni.dll
I have not been able to do much as I am still stuck with the above error on getting the java alpr together to start testing it and trying out things.
Please someone show me where I am going wrong as I am stuck and not making any headways on this at the moment.
I will gladly appreciate any help on this.
Regards,
Joseph Mwema