Java 类路径帮助
我正在使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是因为您的代码未检测捕获设备,
您必须将 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
尝试
java -classpath/voice.jar;/jmf.jar 程序
Try
java -classpath <locationofjar>/voice.jar;<locationofjar>/jmf.jar Program