loadlibrary("dll") 失败-找不到指定的模块
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了loadlibrary("dll") 失败-找不到指定的模块相关的知识,希望对你有一定的参考价值。
参考技术A设备管理器里面出现了”图像设备”选项以后,打开看是否摄像头设备被禁用,如果禁用的话,直接点击【启用】,然后打开一下”我的电脑”,刷新试试。步骤如下:
1、打开我的电脑的“控制中心”。
2、打开“硬件和声音”。
3、在“设备和打印机”项目里,打开“设备管理器”。
4、在“设备管理器”中找到“图像设备”这项目,点击打开可以看到“Integrated Camera”
5、在“Integrated Camera“属性”中打开“更新驱动程序”
6、点击更新驱动程序软件-Integrated Camera,之后便是搜索联机软件。安装完成即可解决驱动问题。
Spring Boot 在Linux环境中 使用System.loadLibrary("XXX") 加载so文件
场景, 在Spring Boot加载so文件, 在此记录配置的过程和帮助过我的链接文档
System.loadLibrary("hello"); // Load native library at runtime
hello.dll (Windows) or libhello.so
注意: window环境中文件名为hello.dll 或 libhello.so
步骤1: 把so文件存放在一个目录中
步骤2: Linux 运行jar文件配置lib库地址
nohup java -Dfile.encoding=utf-8 -Djava.library.path=/root/baller/lib -jar picture-server.jar >nohup.log 2>&1 &
此时运行会提示错误: cannot open shared object file: No such file or directory
步骤3: 把非lib目录 加入到共享库配置文件/etc/ld.so.conf 中
参考地址: https://blog.csdn.net/chen495810242/article/details/89314570
# cat /etc/ld.so.conf include ld.so.conf.d/*.conf # echo "/root/baller/lib" >> /etc/ld.so.conf # ldconfig 刷新的作用
步骤4: 再次执行jar 启动,成功无错误
以上是关于loadlibrary("dll") 失败-找不到指定的模块的主要内容,如果未能解决你的问题,请参考以下文章
loadlibrary("dll") 失败-找不到指定的模块
如何解决java调dll报Unable to load library的错误
关于C++加载DLL文件 用的LoadLibrary方法的问题
Spring Boot 在Linux环境中 使用System.loadLibrary("XXX") 加载so文件