Add read/readFully methods to IOUtils
-------------------------------------
Key: IO-290
URL: https://issues.apache.org/jira/browse/IO-290
Project: Commons IO
Issue Type: New Feature
Reporter: Sebb
When reading from network etc, it's possible for a read to return before it has
read as many bytes as would fit in the buffer.
Sometimes multiple reads are needed to fulfil the request.
It would be useful to have read() versions of the skip() methods.
{code}
int actual = read(Reader, byte buffer [,offset, length]) // returns normally on
EOF
int actual = read(InputStream, char buffer [,offset, length])
int actual = readFully(Reader, byte buffer [,offset, length]) // throws
EOFException
int actual = readFully(InputStream, char buffer [,offset, length])
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira