Opens a new {@link InputStream} for reading from this source. This method returns a new, independent stream each time it is called. <p>The caller is responsible for ensuring that the returned stream is closed. @throws IOException if an I/O error occurs while opening the stream
()
| 102 | * @throws IOException if an I/O error occurs while opening the stream |
| 103 | */ |
| 104 | public abstract InputStream openStream() throws IOException; |
| 105 | |
| 106 | /** |
| 107 | * Opens a new buffered {@link InputStream} for reading from this source. The returned stream is |
no outgoing calls