在我的应用程序中,我想与Arduino板进行一些通信。为了实现串行通信,我想将Netty框架与RXTX传输库一起使用。
所以我在Gradle构建配置中添加了以下几行:
dependencies {
compile group: 'io.netty', name: 'netty-all', version: '4.1.5.Final'
compile group: 'io.netty', name: 'netty-transport-rxtx', version: '4.1.5.Final'
...
}
现在解决了编译时依赖性,我可以毫无错误地构建项目。
我的构建配置使用以下命令生成可执行JAR:
jar {
manifest {
attributes 'Main-Class': 'de.project.Main',
'Implementation-Title': 'My Project',
'Implementation-Version': version
}
from {
configurations.compile.collect {
it.isDirectory() ? it : zipTree(it)
}
}
}
但是因为RXTX库使用本机库,所以当我执行代码时会出现以下异常:
java.lang.UnsatisfiedLinkError: no rxtxSerial in java.library.path thrown while loading gnu.io.RXTXCommDriver
Exception in thread "main" java.lang.UnsatisfiedLinkError: no rxtxSerial in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1864)
at java.lang.Runtime.loadLibrary0(Runtime.java:870)
at java.lang.System.loadLibrary(System.java:1122)
at gnu.io.CommPortIdentifier.<clinit>(CommPortIdentifier.java:83)
at de.project.communication.SerialConnector.getSerialPorts(SerialConnector.java:83)
at de.project.Main.main(Main.java:36)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)
异常告诉我,我需要RXTX的平台相关本机库,如:
librxtxSerial.jnilib(对于OSX)
所以我的问题是:在我的Gradle构建中添加本机库的最佳做法是什么?当我从IDE运行我的项目时,如何告诉IntelliJ使用这些本机库?到目前为止,我还没有在互联网上找到任何令人满意的答案。
答案 0 :(得分:1)
我现在通过使用RXTX库的其他依赖项来解决问题:
我添加了两个依赖项:
dependencies {
compile group: 'io.netty', name: 'netty-all', version: '4.1.5.Final'
compile group: 'io.netty', name: 'netty-transport-rxtx', version: '4.1.5.Final'
// New dependencies:
compile group: 'org.bidib.jbidib', name: 'jbidibc-rxtx-2.2', version: '1.6.0'
compile group: 'org.bidib.jbidib', name: 'bidib-rxtx-binaries', version: '2.2'
...
}
库'jbidibc-rxtx-2.2'使用另一种加载机制来从'bidib-rxtx-binaries'加载二进制文件。这就是它现在有效的原因。
因为'netty-transport-rxtx'已经将RXTX库作为依赖项提供,所以我添加了以下配置,以便在我的项目中只使用“新的”RXTX库。
configurations {
all*.exclude group: 'org.rxtx'
}