- java.lang.Object
-
- javax.sound.midi.spi.SoundbankReader
-
public abstract class SoundbankReader extends Object
ASoundbankReader
supplies soundbank file-reading services. Concrete subclasses ofSoundbankReader
parse a given soundbank file, producing aSoundbank
object that can be loaded into aSynthesizer
.- Since:
- 1.3
-
-
Constructor Summary
Constructors Constructor and Description SoundbankReader()
-
Method Summary
Methods Modifier and Type Method and Description abstract Soundbank
getSoundbank(File file)
Obtains a soundbank object from theFile
provided.abstract Soundbank
getSoundbank(InputStream stream)
Obtains a soundbank object from theInputStream
provided.abstract Soundbank
getSoundbank(URL url)
Obtains a soundbank object from the URL provided.
-
-
-
Method Detail
-
getSoundbank
public abstract Soundbank getSoundbank(URL url) throws InvalidMidiDataException, IOException
Obtains a soundbank object from the URL provided.- Parameters:
url
- URL representing the soundbank.- Returns:
- soundbank object
- Throws:
InvalidMidiDataException
- if the URL does not point to valid MIDI soundbank data recognized by this soundbank readerIOException
- if an I/O error occurs
-
getSoundbank
public abstract Soundbank getSoundbank(InputStream stream) throws InvalidMidiDataException, IOException
Obtains a soundbank object from theInputStream
provided.- Parameters:
stream
-InputStream
representing the soundbank- Returns:
- soundbank object
- Throws:
InvalidMidiDataException
- if the stream does not point to valid MIDI soundbank data recognized by this soundbank readerIOException
- if an I/O error occurs
-
getSoundbank
public abstract Soundbank getSoundbank(File file) throws InvalidMidiDataException, IOException
Obtains a soundbank object from theFile
provided.- Parameters:
file
- theFile
representing the soundbank- Returns:
- soundbank object
- Throws:
InvalidMidiDataException
- if the file does not point to valid MIDI soundbank data recognized by this soundbank readerIOException
- if an I/O error occurs
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-javax/sound/midi/spi/soundbankreader.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.