Java 类路径帮助

发布于 2024-10-30 18:28:04 字数 241 浏览 0 评论 0原文

我正在使用Java Media Framework并编写了语音通信代码。我包含了 jmf.jar 文件以便运行语音聊天。在使用 Eclipse IDE 时,我可以运行代码并且它可以工作。我现在通过将项目导出到可执行 jar 来制作 jar 文件。当我使用 java -jar voice.jar 运行这个 jar 时,它不起作用。我说找不到设备。尽管我在 IDE 中工作得很好。我上网查了一下,发现这可能是classpath的问题。 那么如何解决这个问题呢。 谢谢。

I am using Java Media Framework and wrote a voice communication code. I included jmf.jar file for my voice chat to run. While using the eclipse IDE, i can run the code and it works. I now make the jar file by exporting the project into executable jar. When i run this jar using java -jar voice.jar, it doesn't work. I says cannot find devices. even-though i worked well in the IDE. I searched the net and found out that this may be a problem with the classpath.
So how to solve this problem.
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

站稳脚跟 2024-11-06 18:28:04

这是因为您的代码未检测捕获设备,

您必须将 jmf.properties 文件复制到可执行 jar 所在的目录中,

您将在 jmf 安装的 lib 文件夹中找到 jmf.properties 文件。

对我来说是 C:\Program Files\JMF2.1.1e\lib\jmf.properties

This is because your code is not detecting capture devices

you must copy the jmf.properties file to the same directory as your executable jar

you will find the jmf.properties file int the lib folder of your jmf installation.

For me it was C:\Program Files\JMF2.1.1e\lib\jmf.properties

各自安好 2024-11-06 18:28:04

尝试

java -classpath/voice.jar;/jmf.jar 程序

Try

java -classpath <locationofjar>/voice.jar;<locationofjar>/jmf.jar Program

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文