I try to create an application in Java, that I have a grid of images. Each image must be loaded from a remote server through TCP connection(s).
My question is which is the best way to do this? Use one TCP socket and request all the images through this, or open a new socket for each image request?
----- UPDATE -----
Thank you all for your replies.
I update the post to write some extra information which answers in some of your questions.
- The system client/server is in a local (home) network and it will not tranfer data throw Internet, so the connection bandwidth it's not a problem.
- Also the grid will contains the thumbnails of the images, the image I will loaded on demand when the use double clicks an thumbnail on a seperate socket.
- I write the code from the client and the server both are writen in java.
- we have one client may to connect to small number of server's but only one per time no paraller connections to different servers.
What I think, if use a single socket I must seperate the images size, image name so I must for each image send a string with name, and a long for the size. Throw the single socket it's better to request the images all together at the begin of connection and later send all the images in a serial way one to one, or throw the single socket send a image request get the image reply, after request the second image and get the second reply.
If I use multiple sockets, one socket for each image request I want to have a maximum number of open sockets, may I use an threadpool and use one runnable to manage one image transfer throw one socket?
Thank you again.