java.lang.UnsatisfiedLinkError: no rxtxSerial in java.library.path thrown while loading gnu.io.RXTXCommDriver

二次信任 提交于 2019-11-29 04:16:15

I guess the problem is that you have multiple -Djava.library.path parameters and the second one is overwriting the value of the first. The value should also be the path to the folder containing the library, not including the library name.

On linux system you should be able to combine both path parameters using a colon as separator:

-Djava.library.path=/usr/lib/rxtx:/usr/lib/jni

Had same problem with v4l4j library installed from repositories. In ununtu netbeans project failed to start from IDE, but worked fine as jar.

Solved by putting *.so files to /usr/lib not /usr/lib/jni folder.

tobi delbruck

We had the same problem on linux. The key for us to fix it was

  1. Use colon ":" to separate java.library.path elements
  2. Use forward slash for directory separators

In our case we used a relative path like this

-Djava.library.path=jar/linux64:jars

The path is relative to the startup path. E.g. when running from netbeans the startup directory is the project directory.

Project -> properties -> Java build path ->Find your .jar. Click on + to open the JAR's properties. Select Native library location and edit it to point to RXTX's shared library (.DLL, .so, .dylib).

Copy RXTXcomm.jar ---> <JAVA_HOME>\jre\lib\ext

Copy rxtxSerial.dll ---> <JAVA_HOME>\jre\bin

Copy rxtxParallel.dll ---> <JAVA_HOME>\jre\bin

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!