Class AudioInputStream
- All Implemented Interfaces:
-
Closeable,AutoCloseable
public class AudioInputStream extends InputStream
The AudioSystem class includes many methods that manipulate AudioInputStream objects. For example, the methods let you:
- obtain an audio input stream from an external audio file, stream, or
URL - write an external file from an audio input stream
- convert an audio input stream to a different audio format
- Since:
- 1.3
- See Also:
Field Summary
| Modifier and Type | Field | Description |
|---|---|---|
protected AudioFormat |
format |
The format of the audio data contained in the stream. |
protected long |
frameLength |
This stream's length, in sample frames. |
protected long |
framePos |
The current position in this stream, in sample frames (zero-based). |
protected int |
frameSize |
The size of each frame, in bytes. |
Constructor Summary
| Constructor | Description |
|---|---|
AudioInputStream |
Constructs an audio input stream that has the requested format and length in sample frames, using audio data from the specified input stream. |
AudioInputStream |
Constructs an audio input stream that reads its data from the target data line indicated. |
Method Summary
| Modifier and Type | Method | Description |
|---|---|---|
int |
available() |
Returns the maximum number of bytes that can be read (or skipped over) from this audio input stream without blocking. |
void |
close() |
Closes this audio input stream and releases any system resources associated with the stream. |
AudioFormat |
getFormat() |
Obtains the audio format of the sound data in this audio input stream. |
long |
getFrameLength() |
Obtains the length of the stream, expressed in sample frames rather than bytes. |
void |
mark |
Marks the current position in this audio input stream. |
boolean |
markSupported() |
Tests whether this audio input stream supports the mark and reset methods. |
int |
read() |
Reads the next byte of data from the audio input stream. |
int |
read |
Reads some number of bytes from the audio input stream and stores them into the buffer array b. |
int |
read |
Reads up to a specified maximum number of bytes of data from the audio stream, putting them into the given byte array. |
void |
reset() |
Repositions this audio input stream to the position it had at the time its mark method was last invoked. |
long |
skip |
Skips over and discards a specified number of bytes from this audio input stream. |
Methods declared in class java.io.InputStream
nullInputStream, readAllBytes, readNBytes, readNBytes, skipNBytes, transferTo
Field Details
format
protected AudioFormat format
frameLength
protected long frameLength
frameSize
protected int frameSize
framePos
protected long framePos
Constructor Details
AudioInputStream
public AudioInputStream(InputStream stream, AudioFormat format, long length)
- Parameters:
-
stream- the stream on which thisAudioInputStreamobject is based -
format- the format of this stream's audio data -
length- the length in sample frames of the data in this stream
AudioInputStream
public AudioInputStream(TargetDataLine line)
AudioSystem#NOT_SPECIFIED.- Parameters:
-
line- the target data line from which this stream obtains its data - See Also:
Method Details
getFormat
public AudioFormat getFormat()
- Returns:
- an audio format object describing this stream's format
getFrameLength
public long getFrameLength()
- Returns:
- the length in sample frames
read
public int read() throws IOException
IOException will be thrown.- Specified by:
-
readin classInputStream - Returns:
- the next byte of data, or -1 if the end of the stream is reached
- Throws:
-
IOException- if an input or output error occurs - See Also:
read
public int read(byte[] b) throws IOException
b. The number of bytes actually read is returned as an integer. This method blocks until input data is available, the end of the stream is detected, or an exception is thrown. This method will always read an integral number of frames. If the length of the array is not an integral number of frames, a maximum of b.length - (b.length % frameSize) bytes will be read.
- Overrides:
-
readin classInputStream - Parameters:
-
b- the buffer into which the data is read - Returns:
- the total number of bytes read into the buffer, or -1 if there is no more data because the end of the stream has been reached
- Throws:
-
IOException- if an input or output error occurs - See Also:
read
public int read(byte[] b, int off, int len) throws IOException
This method will always read an integral number of frames. If len does not specify an integral number of frames, a maximum of len - (len % frameSize) bytes will be read.
- Overrides:
-
readin classInputStream - Parameters:
-
b- the buffer into which the data is read -
off- the offset, from the beginning of arrayb, at which the data will be written -
len- the maximum number of bytes to read - Returns:
- the total number of bytes read into the buffer, or -1 if there is no more data because the end of the stream has been reached
- Throws:
-
IOException- if an input or output error occurs - See Also:
skip
public long skip(long n) throws IOException
This method will always skip an integral number of frames. If n does not specify an integral number of frames, a maximum of n - (n % frameSize) bytes will be skipped.
- Overrides:
-
skipin classInputStream - Parameters:
-
n- the requested number of bytes to be skipped - Returns:
- the actual number of bytes skipped
- Throws:
-
IOException- if an input or output error occurs - See Also:
available
public int available() throws IOException
read or skip method for this audio input stream; the limit can vary each time these methods are invoked. Depending on the underlying stream, an IOException may be thrown if this stream is closed.- Overrides:
-
availablein classInputStream - Returns:
- the number of bytes that can be read from this audio input stream without blocking
- Throws:
-
IOException- if an input or output error occurs - See Also:
close
public void close() throws IOException
- Specified by:
-
closein interfaceAutoCloseable - Specified by:
-
closein interfaceCloseable - Overrides:
-
closein classInputStream - Throws:
-
IOException- if an input or output error occurs
mark
public void mark(int readlimit)
- Overrides:
-
markin classInputStream - Parameters:
-
readlimit- the maximum number of bytes that can be read before the mark position becomes invalid - See Also:
reset
public void reset() throws IOException
mark method was last invoked.- Overrides:
-
resetin classInputStream - Throws:
-
IOException- if an input or output error occurs - See Also:
markSupported
public boolean markSupported()
mark and reset methods.- Overrides:
-
markSupportedin classInputStream - Returns:
-
trueif this stream supports themarkandresetmethods;falseotherwise - See Also:
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.desktop/javax/sound/sampled/AudioInputStream.html