|
Question : Java simultaneous file transfer
|
|
Is there a way that a client can copy mutliple files simultaneously from a server?
NB:- I have no issue with copying one file at a time from a server.
Thanks in advance
|
Answer : Java simultaneous file transfer
|
|
yes just start a new thread for each copy.
Thread t = new Thread(new Runnable() { public void run() { copyFileFromServer(); }}); t.start();
|
|
|