I'm having a problem with loading dll placed in dll folder file inside my Java code. To make it simple - I try to execute load dll inside exampleTest.java but I get UnsatisiefLinkException.
I tried:
InputStream in = this.getClass().getClassLoader().getResourceAsStream("../dll/file.dll");
But it doesn't work. Do anyone has any idea how to solve this issue?