FreeTTS 可移植性问题
我正在编写一个使用 Java 语音 API 和 FreeTTS 的应用程序。当我从 Netbeans IDE 运行该应用程序时,该应用程序工作正常,但是当我尝试从本地计算机或其他计算机上的 jar 文件运行它时,出现以下错误:
“java.lang.NoClassDefFoundError: com/sun/ voice/freetts/VoiceManager"
有什么方法可以将 FreeTTS 文件包含在我的 jar 文件中,以便它可以在任何地方运行?
任何帮助将不胜感激。
I'm writing an application that makes use of Java's speech API and FreeTTS. The application works fine when I run it from the Netbeans IDE, but when I try to run it from a jar file on my local machine or on other machines, I get the following error:
"java.lang.NoClassDefFoundError: com/sun/speech/freetts/VoiceManager"
Is there any way for me to include the FreeTTS files in my jar file so it can run anywhere?
Any help would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了同样的问题,我找到了这个页面:
http://ondra.zizka.cz/stranky/programovani/java/misc/freetts-line-unavailable-classcastexception-kevinvoicedirectory-error-opening-zipfile.texy
我采用了简单的方法,即要将
freetts
安装添加到我的 dist 文件夹中,请更改 jar 的清单以查找jsapi.jar
,freetts.jar
等并且它可以工作。我只是在我的文件夹中分发 freetts。困难的方法在上面的链接上。
i had the same problem and i found this page:
http://ondra.zizka.cz/stranky/programovani/java/misc/freetts-line-unavailable-classcastexception-kevinvoicedirectory-error-opening-zipfile.texy
I did the easy way, which was to add the
freetts
installation to my dist folder, change the manifest of my jar on where to find thejsapi.jar
,freetts.jar
etc. and it is worked. I am just distributing freetts inside my folder.The hard way is on the link above.