如果我在JAR中存储了音库,那么如何使用资源加载方式将该音库加载到应用程序中?

我正在尝试将尽可能多的MIDI程序合并到jar文件中,而我最后要添加的是我正在使用的音库文件,因为用户不会安装音库。我试图将其放入我的jar文件中,然后在Class类中使用getResource()加载它,但在已知有效的音库上获取了InvalidMidiDataException。

这是代码,它在我的合成器对象的构造函数中:


try {
    synth = MidiSystem.getSynthesizer();
    channels = synth.getChannels();
    instrument = MidiSystem.getSoundbank(this.getClass().getResource("img/soundbank-mid.gm")).getInstruments();
    currentInstrument = instrument[0];
    synth.loadInstrument(currentInstrument);
    synth.open();
    } catch (InvalidMidiDataException ex) {
        System.out.println("FAIL");
        instrument = synth.getAvailableInstruments();
        currentInstrument = instrument[0];
        synth.loadInstrument(currentInstrument);
        try {
            synth.open();
        } catch (MidiUnavailableException ex1) {
            Logger.getLogger(MIDISynth.class.getName()).log(Level.SEVERE, null, ex1);
        }
    } catch (IOException ex) {
        Logger.getLogger(MIDISynth.class.getName()).log(Level.SEVERE, null, ex);
    } catch (MidiUnavailableException ex) {
        Logger.getLogger(MIDISynth.class.getName()).log(Level.SEVERE, null, ex);
 }

最佳答案

这是我所做的:

synth.loadAllInstruments(
    MidiSystem.getSoundbank(
        getClass().getResourceAsStream(filePath)));


这个对我有用。

09-03 19:43