Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Object
java.io.InputStream
javax.sound.sampled.AudioInputStream
public class AudioInputStream
extends InputStream
Field Summary | |
protected AudioFormat |
|
protected long |
|
protected long |
|
protected int |
|
Constructor Summary | |
| |
|
Method Summary | |
int |
|
void |
|
AudioFormat |
|
long |
|
void |
|
boolean |
|
int |
|
int |
|
int |
|
void |
|
long |
|
Methods inherited from class java.io.InputStream | |
available , close , mark , markSupported , read , read , read , reset , skip |
Methods inherited from class java.lang.Object | |
clone , equals , extends Object> getClass , finalize , hashCode , notify , notifyAll , toString , wait , wait , wait |
public AudioInputStream(InputStream is, AudioFormat fmt, long length)
Create a new AudioInputStream given an underlying InputStream, the audio format, and the length of the data in frames. The frame size is taken from the format.
- Parameters:
is
- the underlying input streamfmt
- the format of the datalength
- the length of the data in frames
public AudioInputStream(TargetDataLine line)
Create a new AudioInputStream given a TargetDataLine. The audio format and the frame size are taken from the line.
- Parameters:
line
- the TargetDataLine
public int available() throws IOException
Return the number of bytes available to be read from the underlying stream. This wrapper method ensures that the result is always a multiple of the frame size.
- Overrides:
- available in interface InputStream
public void close() throws IOException
Close the stream.
- Specified by:
- close in interface Closeable
- close in interface AutoCloseable
- Overrides:
- close in interface InputStream
public AudioFormat getFormat()
Get the format associated with this stream.
- Returns:
- the AudioFormat
public long getFrameLength()
Get the length of this stream in frames. Note that this may be AudioSystem#NOT_SPECIFIED.
- Returns:
- the length of the stream in frames
public void mark(int limit)
This method marks a position in the input to which the stream can be "reset" by calling thereset()
method. The parameter @code{readlimit} is the number of bytes that can be read from the stream after setting the mark before the mark becomes invalid. For example, ifmark()
is called with a read limit of 10, then when 11 bytes of data are read from the stream before thereset()
method is called, then the mark is invalid and the stream object instance is not required to remember the mark.This method does nothing in this class, but subclasses may override it to provide mark/reset functionality.
- Overrides:
- mark in interface InputStream
- Parameters:
public boolean markSupported()
Return true if the underlying stream supports mark and reset, false otherwise.
- Overrides:
- markSupported in interface InputStream
public int read() throws IOException
Read a single byte from the underlying stream. If the frame size is set, and is not one byte, an IOException will be thrown.
- Overrides:
- read in interface InputStream
public int read(byte[] buf) throws IOException
This method reads bytes from a stream and stores them into a caller supplied buffer. This method attempts to completely fill the buffer, but can return before doing so. The actual number of bytes read is returned as an int. A -1 is returned to indicate the end of the stream.This method will block until some data can be read.
This method operates by calling an overloaded read method like so:
read(b, 0, b.length)
- Overrides:
- read in interface InputStream
- Parameters:
- Returns:
- The number of bytes read or -1 if end of stream.
- Throws:
IOException
- If an error occurs.
public int read(byte[] buf, int offset, int length) throws IOException
This method read bytes from a stream and stores them into a caller supplied buffer. It starts storing the data at indexoff
into the buffer and attempts to readlen
bytes. This method can return before reading the number of bytes requested. The actual number of bytes read is returned as an int. A -1 is returned to indicate the end of the stream.This method will block until some data can be read.
This method operates by calling the single byte
read()
method in a loop until the desired number of bytes are read. The read loop stops short if the end of the stream is encountered or if an IOException is encountered on any read operation except the first. If the first attempt to read a bytes fails, the IOException is allowed to propagate upward. And subsequent IOException is caught and treated identically to an end of stream condition. Subclasses can (and should if possible) override this method to provide a more efficient implementation.
- Overrides:
- read in interface InputStream
- Parameters:
- Returns:
- The actual number of bytes read, or -1 if end of stream.
- Throws:
IOException
- If an error occurs.
public void reset() throws IOException
This method resets a stream to the point where themark()
method was called. Any bytes that were read after the mark point was set will be re-read during subsequent reads.This method always throws an IOException in this class, but subclasses can override this method if they provide mark/reset functionality.
- Overrides:
- reset in interface InputStream
- Throws:
IOException
- Always thrown for this class
public long skip(long n) throws IOException
This method skips the specified number of bytes in the stream. It returns the actual number of bytes skipped, which may be less than the requested amount.This method reads and discards bytes into a byte array until the specified number of bytes were skipped or until either the end of stream is reached or a read attempt returns a short count. Subclasses can override this metho to provide a more efficient implementation where one exists.
- Overrides:
- skip in interface InputStream
- Parameters:
n
- The requested number of bytes to skip
- Returns:
- The actual number of bytes skipped.
- Throws:
IOException
- If an error occurs