3

外壳上的消息是:

Exception in thread "main" java.lang.IllegalArgumentException: Invalid format
    at org.classpath.icedtea.pulseaudio.PulseAudioDataLine.createStream(PulseAudioDataLine.java:142)
    at org.classpath.icedtea.pulseaudio.PulseAudioDataLine.open(PulseAudioDataLine.java:99)
    at org.classpath.icedtea.pulseaudio.PulseAudioDataLine.open(PulseAudioDataLine.java:283)
    at org.classpath.icedtea.pulseaudio.PulseAudioClip.open(PulseAudioClip.java:402)
    at org.classpath.icedtea.pulseaudio.PulseAudioClip.open(PulseAudioClip.java:453)
    at reprod.ReproducirFichero(reprod.java:16)
    at reprod.main(reprod.java:44)

我尝试下载新的音频驱动程序,尝试重新安装 openJDK 7 和 openJRE 7,还尝试安装 java 7。

我已经在另一台计算机上证明了我的代码并且它可以工作,我使用的台式机主板是英特尔 d525mw,我尝试播放的音频格式是 .wav。我使用的 linux 版本是 Ubuntu 12.04.3。请我需要帮助。谢谢

这是我的代码的一部分,我尝试播放 .wav 音频格式

import javax.sound.sampled.*;

public class reprod {

public static void play(){
    try {
        Clip cl = AudioSystem.getClip();

        File f = new File("/home/usr/Desktop/d.wav");
        AudioInputStream ais = AudioSystem.getAudioInputStream(f);

        cl.open(ais);

        cl.start();
        System.out.println("playing...");

        while (cl.isRunning())
            Thread.sleep(4000);


        cl.close();

我使用的 linux 版本是 Ubuntu 12.04.3

4

3 回答 3

9

我通过简单地将参数传递nullAudioSystem.getClip().

我不知道为什么会发生这个异常,我之前在 Windows 上运行过这个项目,它工作了......在 Linux 和这里之后,它没有工作。

于 2016-03-19T12:42:46.840 回答
4

I had the same problem and found this code to work:

File soundFile = new File("/home/usr/Desktop/d.wav");
AudioInputStream soundIn = AudioSystem.getAudioInputStream(soundFile);
AudioFormat format = soundIn.getFormat();
DataLine.Info info = new DataLine.Info(Clip.class, format);
Clip clip = (Clip)AudioSystem.getLine(info);
clip.open(soundIn);
clip.start();
while(clip.isRunning())
{
   Thread.yield();
}

The key is in soundIn.getFormat(). To quote the docs:

Obtains the audio format of the sound data in this audio input stream.

Source: http://ubuntuforums.org/showthread.php?t=1469572

于 2014-06-06T11:49:24.663 回答
0

错误消息说输入文件格式在某种程度上是错误的。

如果您向我们提供了更多信息(文件格式、可能是从哪里获得的、您用于打开文件的代码以及您如何配置音频驱动程序),我们或许可以提供帮助。

有关您可以尝试的一些代码,请参阅此问题:How to play .wav files with java

于 2013-09-22T10:20:51.340 回答