Just add the *.dll
files to your c:/windows
You can get the java.library.path from the follow codes:and then add you dll files under any path of you get
import java.util.logging.Logger;
public class Test {
static Logger logger = Logger.getLogger(Test.class.getName());
public static void main(String[] args) {
logger.info(System.getProperty("java.library.path"));
}
}