如何修复错误 "cannot be cast to com.sun.speech.freetts.VoiceDirectory"?

How to fix error "cannot be cast to com.sun.speech.freetts.VoiceDirectory"?

我正在尝试在我的 java 程序(来自 https://freetts.sourceforge.io/docs/index.php)中使用 FreeTTS,但出现此错误:java.lang.ClassCastException: com.sun.speech.freetts.en.us.cmu_time_awb.AlanVoiceDirectory cannot be cast to com.sun.speech.freetts.VoiceDirectory

我试过将免费的 TTS jar 文件重新添加到我的项目中,这是我的代码:

import com.sun.speech.freetts.Voice;
import com.sun.speech.freetts.VoiceManager;

public class TextToSpeech {
//String voiceName = "kevin16";
VoiceManager freeVM;
Voice voice;
public TextToSpeech(String words) {
    freeVM = VoiceManager.getInstance();
    voice = VoiceManager.getInstance().getVoice("kevin16");
    if (voice != null) {
        voice.allocate();//Allocating Voice
    }

    try {
        voice.setRate(190);//Setting the rate of the voice
        voice.setPitch(150);//Setting the Pitch of the voice
        voice.setVolume(3);//Setting the volume of the voice
        SpeakText(words);// Calling speak() method


    } catch (Exception e1) {
        e1.printStackTrace();
    }



}

public void SpeakText(String words) {
    voice.speak(words);
}

我像这样从另一个 class 调用 TextToSpeech 构造函数:

 new TextToSpeech("Hello World");

非常感谢任何帮助或建议!

像这样更改 Text To Speech 构造函数:

public TextToSpeech(String words) {
    System.setProperty("freetts.voices", "com.sun.speech.freetts.en.us.cmu_us_kal.KevinVoiceDirectory");
    voice = VoiceManager.getInstance().getVoice("kevin16");
    if (voice != null) {
        voice.allocate();// Allocating Voice
        try {
            voice.setRate(190);// Setting the rate of the voice
            voice.setPitch(150);// Setting the Pitch of the voice
            voice.setVolume(3);// Setting the volume of the voice
            SpeakText(words);// Calling speak() method

        } catch (Exception e1) {
            e1.printStackTrace();
        }

    } else {
        throw new IllegalStateException("Cannot find voice: kevin16");
    }
}

想法是指示 freetts 使用 com.sun.speech.freetts.en.us.cmu_us_kal.KevinVoiceDirectory class 而不是 AlanVoiceDirectory class.