如何让Java Media Framework mp3plugin在Ubuntu 11.04上工作?
你好,我需要在 ubuntu 上运行我的“java mp3Player”,我的代码使用 JMF 来播放 mp3 文件!
由于我在 Windows 中编码和测试,没有出现任何问题,但现在我需要我的应用程序在 ubuntu 上运行,我无法安装 JMF。
我使用了 JMF 的 Bentokit 安装程序,但不知道该怎么做安装 mp3Plugin!
在其他情况下,Linux 的 jmf 安装程序没有 sound.jar 文件,但其他版本(Windows 和Solaris)有它!有人知道为什么吗?
感谢您的关注!
Hello i need to run my "java mp3Player" on ubuntu, my code uses JMF to play mp3 files!
Since i coded and tested in windows nothing goes wrong but now that i need my app works on ubuntu i can't install the JMF.
I used bentokit installer for the JMF but don't know what to do to install the mp3Plugin!
In other the jmf installer for linux does not have the file sound.jar but other release (windows and solaris) have it! somenone know why?
Thanks for the attention!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将您可以在 此处 找到的 jar mp3plugin.jar 放入JAVA_HOME/lib/ext 并运行以下命令:
Put the jar mp3plugin.jar that you can find in here in JAVA_HOME/lib/ext and run the following command:
不一定要安装 JMF 才能播放 MP3 文件。相反,请添加 mp3plugin.jar 到应用程序的运行时类路径,Java Sound 将能够加载它。 (是的,
mp3plugin.jar
是 JMF 的一部分,但也可以单独使用。)It is not necessary to install JMF just to be able to play MP3 files. Instead, add the mp3plugin.jar to the application's run-time class-path and Java Sound will be able to load it. (Yes,
mp3plugin.jar
is part of the JMF, but it is also usable separately.)