Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to run an exsisting project in Eclispe luna. I am getting the following error. The zip file of the project is available at the following link

http://processors.wiki.ti.com/index.php/File:JavaSimplePeripheral.zip

Error Usage: java ClassFileVersionPrinter [-R] PATH * PATH must be an existing class file, a directory, a ZIP-file or a JAR-file. * If PATH is a directory and -R is specified, all subdirectories will be processed recursively. Otherwise only class files contained directly in the specified directory will be processed.

jess

Here is my stack trace:

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.pathat
java.lang.ClassLoader.loadLibrary(Unknown Source) at
java.lang.Runtime.loadLibrary0(Unknown Source) at
java.lang.System.loadLibrary(Unknown Source) at gnu.io.CommPortIdentifier.<clinit>(CommPortIdentifier.java:83)
atcc2540.logic.ListAvailablePorts.getPortArray(ListAvailablePorts.java:21) at cc2540.gui.GUI.<init>(GUI.java:54)at cc2540.gui.GUI.main(GUI.java:269)
share|improve this question

put on hold as off-topic by Yu Hao, Kick Buttowski, Jeen Broekstra, QuantumMechanic, MrTux 15 hours ago

This question appears to be off-topic. The users who voted to close gave this specific reason:

  • "Questions seeking debugging help ("why isn't this code working?") must include the desired behavior, a specific problem or error and the shortest code necessary to reproduce it in the question itself. Questions without a clear problem statement are not useful to other readers. See: How to create a Minimal, Complete, and Verifiable example." – Yu Hao, Kick Buttowski, Jeen Broekstra, QuantumMechanic, MrTux
If this question can be reworded to fit the rules in the help center, please edit the question.

2  
Can you please include a snippet of the Java code which is failing? –  Tim Biegeleisen 17 hours ago
    
I am unable to find the code which is failing. Eclispe is not showing any errors on the files. –  user1919855 17 hours ago
    
I think if you load up the program in your Eclipse then you will get the same error –  user1919855 17 hours ago
    
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.pathat java.lang.ClassLoader.loadLibrary(Unknown Source) at java.lang.Runtime.loadLibrary0(Unknown Source) at java.lang.System.loadLibrary(Unknown Source) at gnu.io.CommPortIdentifier.<clinit>(CommPortIdentifier.java:83) atcc2540.logic.ListAvailablePorts.getPortArray(ListAvailablePorts.java:21)at cc2540.gui.GUI.<init>(GUI.java:54)at cc2540.gui.GUI.main(GUI.java:269) –  user1919855 16 hours ago

Browse other questions tagged or ask your own question.