Is it possible to build a HelloWorld.lib and load it to a Java application using JNI? Or it just works with shared libraries?
I couldn\'t find a clear answer on the
You would have to link it to the JVM, and you don't have a way to do that. That's why JNI is defined with shared libraries, not static ones.