当我运行此代码时,不会播放任何内容。但是没有错误。我使用的是跨平台的JMF2.1.1,并且已经在我的netbeans项目中导入了JMF.jar文件。
import javax.swing.*;
import java.awt.*;
import javax.media.*;
import java.awt.event.*;
import java.net.*;
public class HelloJMF {
JFrame frame = new JFrame(" Hello JMF Player");
static Player helloJMFPlayer = null;
public HelloJMF() {
try { // method using URL
URL url = new URL("file", null, "C:\Users\Tamojit9\Documents\NetBeansProjects\MediaPlayer\src\sample\gunaah.mp3");
helloJMFPlayer = Manager.createRealizedPlayer(url);
} catch (Exception e) {
System.out.println(" Unable to create the audioPlayer :" + e);
}
Component control = helloJMFPlayer.getControlPanelComponent();
frame.getContentPane().add(control, BorderLayout.CENTER);
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent we) {
HelloJMF.stop();
System.exit(0);
}
});
frame.pack();
frame.setSize(new Dimension(200, 50));
frame.setVisible(true);
helloJMFPlayer.start();
}
public static void stop() {
helloJMFPlayer.stop();
helloJMFPlayer.close();
}
public static void main(String args[]) {
HelloJMF helloJMF = new HelloJMF();
}
}
请帮我找出错误!!!!
您已经给出了一个mp3
文件,但单独的jmf
无法播放mp3。
为此,您必须使用mp3plugin.jar文件,下载jar,然后添加到类路径,然后重试,使用您的代码可以播放.wav文件。