如何为应用程序和applet播放mp3文件?

时间:2015-08-09 02:58:47

标签: java swing audio applet

我正在开发一个程序,当你点击applet和应用程序中的按钮时它们都发出声音,但是在程序的应用程序部分中我一直收到错误。

这是我得到的错误:sample.mp3(系统找不到指定的文件) 但我清楚地知道我的项目。

public class project extends JApplet {

public void init() {
    add(new AppletOrApplicationMainComponent());
}

public static void main(String args[]) {
    JFrame frame = new JFrame("");
    frame.getContentPane().add(new AppletOrApplicationMainComponent());
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.pack();
    frame.setVisible(true);
}
}

class AppletOrApplicationMainComponent extends JPanel {

public AppletOrApplicationMainComponent() {

    super(new BorderLayout());

    JButton button = new JButton("Play");
    button.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            Play();
        }
    });
    add(button, BorderLayout.SOUTH);
}

private void Play(){

    try{

        File file = new File("sample.mp3");
        FileInputStream fis = new FileInputStream(file);
        BufferedInputStream bis = new BufferedInputStream(fis);
        Player player = new Player(bis);
        player.play();

    }catch(Exception e){ 
        e.printStackTrace();
    }
}
}

1 个答案:

答案 0 :(得分:1)

令人兴奋的是,几乎忘了回答这个问题:

  

如何为应用程序和applet播放mp3文件?

首先,使用URL访问资源与applet和应用程序兼容。该网址可以从Class.getResource(String)获取。有关使用该方法的更多详细信息,请参阅embedded resource info. page

关于播放我们有URL的MP3,请参阅Java Sound info. page的MP3解码支持部分。基本上它归结为将MP3 SPI添加到应用程序的运行时类路径。

另请注意,该页面中提到的Clip便利类(并在示例中显示)不适用于大文件。从存储器中,它将保持最多1秒的CD质量(立体声,16位,44.1 KHz)声音。对于较大的文件,您可以直接使用AudioInputStream,读取字节并将它们反馈给播放它们的声音API。要么使用BigClip,要么将整个流字节缓存在内存中,就像Clip一样。