简体   繁体   中英

Is there a way to uniquely identify a socket?

I'm trying to implement a simple Client/Server program in Java (mainly through the multi Client and Server tutorials provided by Oracle).

I'm just wondering if there's a way to uniquely identify a connected client on the server side?

Yes, by the value of the Socket reference itself.

When a client connects to the server, store the Socket instance.
Then you can use it later to identify the connected client.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM