In java.io.FileInputStream, there is a method int read(Byte[] buffer,int offset,int numBytes); how we can use this function - is there any difference between this method and read(byte[] buffer)?
|
|
|||||
|
|
As the Javadoc points out (and the names of the parameters indicate), the method with offset and numBytes uses only part of the buffer to put its output in.
You can use this method if you want to reuse an existing buffer that already has data in it that you do not want to clobber (Of course, the In Java, almost all operations on buffers offer this kind of interface. Used properly, you can avoid copying/buffering data more times than necessary. |
||||
|
|
Just got this from the javadoc. Reads up to len bytes of data from this input stream into an array of bytes. If len is not zero, the method blocks until some input is available; otherwise, no bytes are read and 0 is returned. Parameters:
Returns: the total number of bytes read into the buffer, or -1 if there is no more data because the end of the file has been reached. http://java.sun.com/javase/6/docs/api/java/io/FileInputStream.html#read(byte[], int, int) |
|||
|
|
|
This function is very useful to read a whole file into memory. See this example,
|
|||
|
|