使用 Python 的 Web Server Gateway Interface (WSGI) 搭建 Web 服务器,参考官网:https://docs.python.org/2/library/wsgiref.html
Continue reading整理Python官网给的sample:https://docs.python.org/3/library/socket.html
官网展示了支持IPv4的TCP代码,这里也展示UDP的代码,两者基本类似。
Continue reading用Java来写一个简单的服务器(server),对客户端(client)的request进行回应。
这个sample主要使用socket来进行演示,分别可以接收与发送string和object。
Continue reading