As described in the title, I would like to open several FileInputStream object to access the same file to obtain data in different position. Is it safe to do that, thank you!
As described in the title, I would like to open several FileInputStream object to
Share
It is perfectly fine as long as all you’re doing is reading, and none of your threads/streams puts an exclusive lock on the file.