java-scoket-while - Java scoket服务端接口
伊谢尔伦
伊谢尔伦 2017-04-18 10:49:32
0
2
486

scoket服务端接口是如何发布的,这个发布是什么意思,如何发布?

伊谢尔伦
伊谢尔伦

小伙看你根骨奇佳,潜力无限,来学PHP伐。

reply all(2)
PHPzhong

socket, don’t make a mistake
For the server, you need to use the ServerSocket class. One of the constructors is
server = new ServerSocket(port);
Then call Socket client = server.accept(); when there is a new socket connection, you can return a client's socket connection object. If you don’t understand, you can ask

洪涛

Publishing means that the client can access it through the port,
server = new ServerSocket(port) means publishing

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!