javax.mail.internet
public interface SharedInputStream
Version: 1.3
| Method Summary | |
|---|---|
| long | getPosition()
Returns the current position in the InputStream as an offset from the
beginning of the InputStream. |
| InputStream | newStream(long start, long end)
Returns a new InputStream representing a subset of the data from this
InputStream, from start (inclusive) up to
end (exclusive). |
start (inclusive) up to
end (exclusive). start must be non-negative.
If end is -1, the new stream ends at the same place
as this stream. The returned InputStream will also implement the
SharedInputStream interface.Parameters: start the start position end the end position + 1