Error loading audio in java (illegal call to open() in interface Clip)

前提是你 提交于 2020-01-05 04:11:10

问题


I'm writing an new audio system for my game and i have come across this error and can not seem to find and solution anywhere,

java.lang.IllegalArgumentException: illegal call to open() in interface Clip
at com.sun.media.sound.DirectAudioDevice$DirectClip.implOpen(Unknown Source)
at com.sun.media.sound.AbstractDataLine.open(Unknown Source)
at com.sun.media.sound.AbstractDataLine.open(Unknown Source)

This is the code i use to load and play my audio.

private Clip load(String filename) {        
    try {
        //Loads the file
        InputStream in = new FileInputStream(new File("res/" + filename + FILE_EXT));
        //Create the input buffer
        InputStream bufferedIn = new BufferedInputStream(in);
        //Convert into an audio stream
        AudioInputStream audioStream = AudioSystem.getAudioInputStream(bufferedIn);
        //Get the audio format
        AudioFormat format = audioStream.getFormat();
        //Get the data line info
        DataLine.Info info = new DataLine.Info(Clip.class, format);
        //Return the clip
        Clip audioClip = (Clip) AudioSystem.getLine(info);
        audioClip.addLineListener(this);
        return this.clip = audioClip;
    } catch (FileNotFoundException e) {
        System.err.println("Failed to load audio! " + filename + " not found!");
        throw new RuntimeException(e);
    } catch (UnsupportedAudioFileException e) {
        System.err.println("Failed to load audio! " + filename + " is unsupported!");
        throw new RuntimeException(e);
    } catch (IOException e) {
        System.err.println("Failed to load audio! " + filename + " caused an IO Exception!");
        throw new RuntimeException(e);
    } catch (LineUnavailableException e) {
        System.err.println("Failed to load audio! " + filename + " line is unavalible!");
        e.printStackTrace();
    }
    throw new RuntimeException("Failed to load audio! input == null!");
}

private void startClip() {
    if(this.clip != null) this.clip.start();
    else throw new RuntimeException("Failed to start audio clip! The clip appears to be null.");
}

private void stopClip() {
    if(this.clip != null) this.clip.close();
    else throw new RuntimeException("Failed to close audio clip! The clip appears to be null.");
}

@Override
public void play() {
    try {
        if(isPlaying()) return;
        else {
            startClip();
            this.clip.open();
            this.playing = true;
        }
    } catch (LineUnavailableException e) {
        e.printStackTrace();
    }
}

The error occurs at this.clip.open();

Can anyone help me?


回答1:


You don't pass anything to the Clip to play.

Line#open:

IllegalArgumentException - if this method is called on a Clip instance.

You need to call clip.open(audioStream) instead of clip.open(). Also, you need to do this before starting the Clip.



来源:https://stackoverflow.com/questions/36536144/error-loading-audio-in-java-illegal-call-to-open-in-interface-clip

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!