Using J2me, is it possible to read from a file while another thread is writing to it?
Or the writing operation locks the file and prevents the read operation ?
i.e. I'm asking about the possibility of reading & writing in same time.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
It is possible. You can read from a file while another thread is writing in to that file but it is not advisable. i had mad same kind of application in which sometimes read and write both were done on same file. When this situation occur it was removing that file from device. So it is better to set lock on file. |
|||||||||
|
|
I tried it on Curve 8520: reading and writing operations terminated successfully without any problems. |
|||
|
|