Could someone explain to me the uses of using buffers, and perhaps some simple (documented) examples of a buffer in use. Thanks.
I lack much knowledge in this area of Java programming, so forgive me if I asked the question wrong. :s
|
|
|||
|
|
|
A buffer is a space in memory where data is stored temporarily before it is processed. See Wiki article Heres a simple Java example of how to use the ByteBuffer class. Update
Hope that clears things up a little. |
||||||
|
|
|
The Sun Java tutorials section on I/O covers this topic: http://java.sun.com/docs/books/tutorial/essential/io/index.html |
||
|
|
|
|
With a buffer, people usually mean some block of memory to temporarily store some data in. One primary use for buffers is in I/O operations. A device like a harddisk is good at quickly reading or writing a block of consecutive bits on the disk in one go. Reading a large amount of data can be done very quickly if you tell the harddisk "read these 10,000 bytes and put them in memory here". If you would program a loop and get the bytes one by one, telling the harddisk to get one byte each time, it is going to be very inefficient and slow. So you create a buffer of 10,000 bytes, tell the harddisk to read all the bytes in one go, and then you process those 10,000 bytes one by one from the buffer in memory. |
||
|
|