Creating arraylists during run-time.
I'm writing a client/server application and want to create arrays during run time. I know this is easily done. But what I want to do is name the lists "clientX" where X is the numerical id of the connected client.
For example, 20 clients connect to the server. I want the server to create an ArrayList for each client upon connection to hold some client specific information. I don't want to predetermine how many clients can connect simultaneously by creating all of the arraylists at the beginning.
Is this possible? Is there perhaps a better solution to what I'm trying to achieve?
Thanks for the help.

