Home | History | Annotate | Download | only in input

Lines Matching refs:read

32  * releasing resources once the last byte has been read) do not do that.
52 * This method is automatically called by the read methods when the end
72 * @throws IOException if the stream could not be read or closed
74 public int read() throws IOException {
75 int n = in.read();
88 * @return number of bytes read, or -1 if no more bytes are available
89 * @throws IOException if the stream could not be read or closed
91 public int read(byte[] b) throws IOException {
92 int n = in.read(b);
106 * @param len maximum number of bytes to read
107 * @return number of bytes read, or -1 if no more bytes are available
108 * @throws IOException if the stream could not be read or closed
110 public int read(byte[] b, int off, int len) throws IOException {
111 int n = in.read(b, off, len);