I am using Jacob jar file in my java application.
This Jacob jar file comes with a .dll file. I have added Jacob jar file to my classpath. But when I execute my appl
When you use System.loadLibrary() don't include the .dll at the end.
System.loadLibrary()
.dll
Also, if you are not setting java.library.path to point to the folder containing the DLL then the DLL should be in the directory where you launch your Java application from.
java.library.path