java.lang.UnsatisfiedLinkError: no rxtxSerial in java.library.path

前端 未结 12 1314
南笙
南笙 2020-11-29 05:14

I am trying to use the 64 bit rxtx serial communication library (downloaded from cloudhopper) with 64bit windows 7 and eclipse. I get the message: java.lang.Unsatisfi

12条回答
  •  时光说笑
    2020-11-29 05:59

    You can also add a virtual machine argument:

    -Djava.library.path=c:\path\to\dll\
    

    or

    -Djava.library.path=/path/to/lib/
    

    That worked for me. Also refer to this question.

提交回复
热议问题