| Author |
What the following exception means
|
Garandi Garandi
Ranch Hand
Joined: Jan 07, 2003
Posts: 192
|
|
java.lang.UnsatisfiedLinkError: no ibmsynth in java.library.path at java.lang.ClassLoader.loadLibrary(Unknown Source) at java.lang.Runtime.loadLibrary0(Unknown Source) at java.lang.System.loadLibrary(Unknown Source) at com.ibm.speech.synthesis.SynthImpl.loadLibraries(SynthImpl.java:110) at com.ibm.speech.synthesis.IBMEngineCentral.createEngineList(IBMEngineCentral.java:84) at javax.speech.Central.availableSynthesizers(Central.java:660) at javax.speech.Central.createSynthesizer(Central.java:553) at com.bluestar.care.ui.VoicePad.initSpeechSynthesisEngine(VoicePad.java:130) at com.bluestar.care.ui.VoicePad.init(VoicePad.java:104) at com.bluestar.care.ui.VoicePad.<init>(VoicePad.java:71) at com.bluestar.care.ui.VoicePad.main(VoicePad.java:91) Thank you in advance Garandi
|
 |
Stefan Wagner
Ranch Hand
Joined: Jun 02, 2003
Posts: 1923
|
|
It means you're trying to use a library, ibmsynth, which isn't in the classpath. A beginners question in my eyes.
|
http://home.arcor.de/hirnstrom/bewerbung
|
 |
Joe P Kumar
Greenhorn
Joined: Oct 06, 2004
Posts: 3
|
|
|
Maybe you are using a Native method and the native lang definition is not proper
|
 |
Mathews P Srampikal
Ranch Hand
Joined: Nov 26, 2002
Posts: 211
|
|
don't use in the the following block of your code static{ System.loadLibrary("abc.dll");//error instead System.loadLibrary("abc");// no error error }
|
Thanks,
Mathews
|
 |
 |
|
|
subject: What the following exception means
|
|
|