0

我目前正在尝试使用 将音乐启动到我的程序中javax.sound.sampled,并且我编写了一个名为 music 的方法,该方法应该在执行时启动音乐剪辑。它是这样的:

public void playMusic(){
    try {
        AudioInputStream astream = AudioSystem.getAudioInputStream(
                newFileInputStream("bin/ctk_tune.mp3"));    
        AudioFormat baseFormat = astream.getFormat();

        AudioFormat newFormat = new AudioFormat(
            AudioFormat.Encoding.PCM_SIGNED,
            baseFormat.getSampleRate(),
            16,
            baseFormat.getChannels(),
            baseFormat.getChannels() * 2,
            baseFormat.getSampleRate(),
            false);
    
        AudioInputStream dstream = AudioSystem.getAudioInputStream(
                newFormat, astream); 
    
        Clip clip = AudioSystem.getClip();
        clip.open(dstream);
    
        clip.setFramePosition(0);
        clip.start();
    } catch(IOException ex) {
        System.out.println("music not loaded : ");
        ex.printStackTrace();
    } catch (UnsupportedAudioFileException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (LineUnavailableException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

当我尝试运行它时,我得到了一个未捕获的异常(程序没有启动),它说:

Exception in thread "main" java.lang.NegativeArraySizeException
at org.classpath.icedtea.pulseaudio.PulseAudioClip.open(PulseAudioClip.java:449)
at mainProgram.playMusic(mainProgram.java:211)
at mainProgram.<init>(mainProgram.java:67)
at Launcher.main(Launcher.java:16)
4

1 回答 1

0

我认为您的代码在调用此方法时失败:

@Override
public void open(AudioInputStream stream) 
        throws LineUnavailableException, IOException {
    byte[] buffer = new byte[(int) (stream.getFrameLength() * 
                                    stream.getFormat().getFrameSize())];
    stream.read(buffer, 0, buffer.length);
    open(stream.getFormat(), buffer, 0, buffer.length);
}

看起来表达式:

    stream.getFrameLength() * stream.getFormat().getFrameSize()

给你一个负值。这将导致该异常......而且我看不到该方法中可能发生异常的任何其他方式。

我的猜测是,您创建流或格式描述符的方式有问题,或者您尝试播放的音频文件有问题。


我建议您使用调试器来找出该表达式为负的原因。

于 2013-12-22T11:37:21.823 回答