I have multiple threads (let's say two, for now), each of which retrieves an HTML page and writes its content to a file. The caveat is that each thread wants to write to the same output file. The class with the run() method is a static inner class. The approach I would like to take is to have each thread put the content it wants to write into a queue. THEN, after the thread is finished (or all the threads have finished), to iterate over the queues and print the contents to the file. I'm not sure how to implement this. Again, the class that implements the runnable interface is static. I'm not well-versed in concurrency and not necessarily looking to do anything fancy. Any suggestions for a simple implementation?
|
You could use the |
|||||
|
|
You can use a single threaded ExecutorService. This can be used to write the data as it is produced (rather than having to wait.
|
|||
|
|
|
You could use |
|||
|
|
Well, based on your description, this is how I think your producers should look:
Of course, you can execute these ThreadTasks in an Executor, in order to better use the system resources and also your consumer thread can run simultaneously with the producers if you implement a producer-consumer queue system. |
|||||||
|