Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
I bet this is the sort of thing that will vary between handsets. Have you tried it to see what happens? – funkybro Aug 2 '11 at 7:48
No, I didn't try it yet ... – Ashraf Bashir Aug 2 '11 at 9:20
Why not give it a wee shot and see how you get on? Report back here when you find out! – funkybro Aug 2 '11 at 13:19
I tried it on Curve 8520 & Bold 9100, reading and writing operations terminated successfully without any problems :) – Ashraf Bashir Aug 3 '11 at 12:54

2 Answers

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.

share|improve this answer
How do you say "it is possible", despite that you say "it was removing that file from device" ? If it is removing the file then it's not possible ..... more explanation please .... – Ashraf Bashir Aug 2 '11 at 7:45
1  
i say possible in terms of that jvm will not restrict you from doing that but it will result in file remove. – Mihir Aug 2 '11 at 8:38
Many thanks for your help :) – Ashraf Bashir Aug 2 '11 at 9:19
up vote 0 down vote accepted

I tried it on Curve 8520: reading and writing operations terminated successfully without any problems.
So I think, the answer is "yes this can be done".
But can't test it on all devices (i.e. I can't be sure it's device independent), perhaps when running on other devices it may cause a problem; as happened with Mihir in a previous comment in this discussion thread !!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.