简体   繁体   中英

Java development on Windows, run on Raspberry Pi Ref Lib Not Found

I've been searching for an answer all night and morning and I'm almost about to give up. I was hoping someone here has had the same problem has and has figured it out.

Basically, I've developed a project on Windows using Eclipse and I would like to run it on my Raspberry Pi. Of course it's no problem, normally, but I'm trying to use a library.

The library is FreeTTS. It works fine on Windows but when I go to use it on my Pi, it can't find the location of the library. I've tried everything and my brain in fried.

The structure of my project is: bin - compiled classes src - source files lib - libraries (include freetts.jar)

Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/speech/freetts/VoiceManager

In Eclipse, I have the libs connected to the project relatively.

Any ideas?

From the directory containing bin and lib, your command should look like:

java -cp bin:lib/freetts.jar com.brandonmxb.bpi.Main

That puts both the bin directory and the jar on the classpath, separated by : ( ; on Windows).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM