if i have a file contains 4000 bytes, can i have 4 threads read from the file at same time? and each thread access a different section of the file.
thread 1 read 0-999, thread 2 read 1000 - 2999, etc.
please give an example in java.
|
|
if i have a file contains 4000 bytes, can i have 4 threads read from the file at same time? and each thread access a different section of the file. thread 1 read 0-999, thread 2 read 1000 - 2999, etc. please give an example in java. |
||||||||||||||||||||
|
|
|
Sorry, Here is the working code. Now i've test it self :-) package readfilemultithreading;
Here is usage code: package readfilemultithreading;
Can I get now my +1 back ;-) |
||||
|
|
|
Given this comment by the question's author:
I would suggest that you load the file into memory as some kind of data structure - an array of ids perhaps. Have the threads consume ids from the array. Be sure to access the array in a synchronized manner. If the file is larger than you'd like to load in memory or the file is constantly being appended to then create a single producer thread that watches and reads from the file and inserts ids into a queue type structure. |
||
|
|
|
|
The file is very very small, and will be very fast to load. What I would do is create a thread-safe data class that loads the data. Each processing thread can then request an ID from the data class and receive a unique one with a guarantee of no other thread sending the same ID to your remote service. In this manner, you remove the need to have all the threads accessing the file, and trying to figure out who has read and sent what ID. |
||
|
|
|
|
You must somehow synchronize the read access to the file. I suggest to use the Your main thread reads the IDs from the file and passed them to the executor service one at a time. The executor will run N threads to process N IDs concurrently. |
||
|
|
|
|
RandomAccessFile or FileChannel will let you access bytes within a file. For waiting until your threads finish, look at CyclicBarrier or CountDownLatch. |
||||
|