0

好吧,标题说明了一切,我尝试使用 javax.sound 播放 wav 文件,但没有任何反应。我尝试了许多不同的文件,但没有任何运气。

public static void main(String[] args) throws IOException, UnsupportedAudioFileException, LineUnavailableException
{

    File in = new File("C:\\Users\\Sandra\\Desktop\\music\\rags.wav");
    AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(in);
    Clip play = AudioSystem.getClip();
    play.open(audioInputStream);
    FloatControl volume= (FloatControl) play.getControl(FloatControl.Type.MASTER_GAIN);
    volume.setValue(1.0f); // Reduce volume by 10 decibels.
    play.start();

}
4

6 回答 6

8

如前所述,您需要阻止主线程退出,因为这将导致 JVM 终止。

Clip#start不是阻塞调用,这意味着它会在调用后(很快)返回。

我毫不怀疑有很多方法可以解决这个问题,这只是其中一种的简单示例。

public class PlayMusic {

    public static void main(String[] args) throws InterruptedException {
        Clip play = null;
        try {
            File in = new File("C:\\Users\\Public\\Music\\Sample Music\\Kalimba.wav");
            AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(in);
            play = AudioSystem.getClip();
            play.open(audioInputStream);
            FloatControl volume = (FloatControl) play.getControl(FloatControl.Type.MASTER_GAIN);
            volume.setValue(1.0f); // Reduce volume by 10 decibels.
            play.start();
            // Loop until the Clip is not longer running.
            // We loop this way to allow the line to fill, otherwise isRunning will
            // return false
            //do {
            //    Thread.sleep(15);
            //} while (play.isRunning());
            play.drain();
        } catch (UnsupportedAudioFileException | IOException | LineUnavailableException ex) {
            ex.printStackTrace();
        } finally {
            try {
                play.close();
            } catch (Exception exp) {
            }
        }
        System.out.println("...");
    }
}

实际的解决方案将取决于您的需求。

于 2013-06-17T00:38:30.510 回答
4

播放音频剪辑的正确方法是排空线路,如播放音频中所述。

所以你的主要应该是这样的:

public static void main(String[] args) throws IOException,
    UnsupportedAudioFileException, LineUnavailableException
{
    File in = new File("C:\\Users\\Sandra\\Desktop\\music\\rags.wav");
    AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(in);
    Clip play = AudioSystem.getClip();
    play.open(audioInputStream);
    FloatControl volume= (FloatControl) play.getControl(FloatControl.Type.MASTER_GAIN);
    volume.setValue(1.0f); // Reduce volume by 10 decibels.
    play.start();
    play.drain();
    play.close();
}

play.drain()阻塞,直到播放完所有数据。

于 2014-05-12T05:18:51.180 回答
4

Java 的声音Clip需要激活Thread才能播放音频输入文件,否则应用程序将在文件播放之前退出。你可以添加

JOptionPane.showMessageDialog(null, "Click OK to stop music");

打电话后start

于 2013-06-16T23:31:41.050 回答
2

在这里播放剪辑

    public static void main(String[] args) throws Exception {
           File in = new File("C:\\Users\\Sandra\\Desktop\\music\\rags.wav");
           AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(in);
           Clip play = AudioSystem.getClip();
           play.open(audioInputStream);
           FloatControl volume= (FloatControl)play.getControl(FloatControl.Type.MASTER_GAIN);
           volume.setValue(1.0f); // Reduce volume by 10 decibels.
           play.start();
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    // A GUI element to prevent the Clip's daemon Thread
                    // from terminating at the end of the main()
                    JOptionPane.showMessageDialog(null, "Close to exit!");
                }
            });
        }
于 2013-06-16T23:47:02.213 回答
1

您的程序在声音有时间播放之前终止。我会play.start();以某种线程方式(invokeLater,...),并找到一种等待声音完成的方法(Reimeus 建议)。

铅 :

public static void main(String[] args) {
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
        public void run() {

          ...

          play.start();
          JOptionPane.showMessageDialog(null, "Click OK to stop music");
        }
    });

}
于 2013-06-16T23:31:47.697 回答
0

如果您只想播放音频,这里有一种方法。

audioFileDirectoryString 变量需要音频文件的正确路径,否则将引发异常并且程序将无法运行。

如果使用 IDE,则在项目中拥有正确的音频文件目录的示例:

  1. 在文件夹中创建一个文件src夹,例如:“音乐”并将音频文件放在那里
  2. audioFileDirectory = "/music/name_of_audio_file";

播放音频的重要部分是程序的主线程需要以某种方式“活着”,所以行

Thread.sleep(audio.getMicrosecondLength()/1000);

是主线程“活着”的地方,参数audio.getMicrosecondLength()/1000是“活着”的时间,即音频文件的整个长度。

public class AudioTest
{
    void playAudio() throws Exception
    {
        String audioFileDirectory = "your_audioFileDirectory";
        InputStream is = getClass().getResourceAsStream(audioFileDirectory);
        BufferedInputStream bis = new BufferedInputStream(is);
        AudioInputStream ais = AudioSystem.getAudioInputStream(bis);
        Clip audio = AudioSystem.getClip();
        audio.open(ais);
        audio.loop(Clip.LOOP_CONTINUOUSLY);
        audio.start();
        Thread.sleep(audio.getMicrosecondLength()/1000);
        audio.close();
    } // end playAudio

    public static void main(String[] args) 
    {
        try 
        {
            new AudioTest().playAudio();
        } 
        catch (Exception e) 
        {
            System.out.println("Class: " + e.getClass().getName());
            System.out.println("\nMessage:\n" + e.getMessage() + "\n");
            e.printStackTrace();
        }
    } // end main
} // end class AudioTest
于 2019-09-26T03:00:06.320 回答