| Author |
RandomAccessFile.length() is NOT thread safe
|
Christian Kindler
Greenhorn
Joined: Apr 16, 2009
Posts: 18
|
|
If you allow multiple threads to access our data class simultaneously (for read operations, using ReadWriteLock), there is one important thing to know: RandomAccessFile.length() is NOT thread safe. So if you use RandomAccessFile.length() (e.g. to make sure not to read beyond EOF), use it within a synchronized block with the RandomAccessFile object as mutex (like you would do with calls to seek/read methods).
I made some tests with multiple threads and had java.io.EOFExceptions thrown from RandomAccessFile's read methods and it took me a while to find out that unsynchronized calls to RandomAccessFile.length() was the reason.
See also: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4823133
|
 |
Fernando Franzini
Ranch Hand
Joined: Jan 09, 2009
Posts: 445
|
|
Thanks Christian for information
|
Fernando Franzini - Java Blog
|
 |
 |
|
|
subject: RandomAccessFile.length() is NOT thread safe
|
|
|