1. System.load()以及System.loadlibrary()
System.load:
参数为库文件的绝对路径
System.loadLibrary:
参数为库文件名,不包含库文件的扩展名(Liunx下也不包括lib前缀),目录在System.getProperty(“java.library.path”)之中
在linux下添加一个java.library.path的方法如下:
在/etc/profile 后面加上一行 export LB_LIBRARY_PATH=路径
2.java.lang.UnsatisfiedLinkError: 包名.方法名(参数名)报错
确定 包名、类名 是否正确
3.java.lang.UnsatisfiedLinkError: /usr/lib/*.so: *: cannot open shared object file: No such file or directory
Dockerfile:
ENV LD_LIBRARY_PATH=/usr/lib
jar运行:
1、vi /etc/profile
2、在最后添加 export LD_LIBRARY_PATH=/usr/lib 并保存
3、source /etc/profile
4、把三个so文件放入/usr/lib