System.loadLibrary("mydll");
运行异常:java.lang.UnsatisfiedLinkError: no mydll in java.library.path
解决方式:把dll放到path中
java.library.path可以打印看相关路径System.out.println(System.getProperty("java.library.path"));
本文共 250 字,大约阅读时间需要 1 分钟。
System.loadLibrary("mydll");
运行异常:java.lang.UnsatisfiedLinkError: no mydll in java.library.path
解决方式:把dll放到path中
java.library.path可以打印看相关路径System.out.println(System.getProperty("java.library.path"));
转载于:https://www.cnblogs.com/rhino92/p/4500195.html