Java - Loading dlls by a relative path and hide them inside a jar
- by supertreta
Hi guys,
I am developing a Java application that should be release as a jar. This program depends on c++ external libraries called by JNI. To load them, I use the method System.load with an absolute path and this works fine.
However, I really want to "hide" them inside the jar, so I have created a package to collect them. This forces me to load…