| Author |
running two process concurrently and store it in separate objects
|
vinoth muthuswamy
Greenhorn
Joined: May 24, 2011
Posts: 4
|
|
Hi,
I am new to java Thread concept.i want to read two xml files concurrently by hitting both URLs(the xml files in the URL) and store it
in two different objects.After completion of the URL reading i need to hit another URL to reset the site.Can any one give me the sample
code.....
Thanks in advance,
|
 |
Stephan van Hulst
Bartender
Joined: Sep 20, 2010
Posts: 3047
|
|
Hi Vinoth, welcome to CodeRanch.
You can use an ExecutorService to handle any amount of tasks that you want, and then wait until they are done before you continue. It would look roughly like this:
|
 |
 |
|
|
subject: running two process concurrently and store it in separate objects
|
|
|