本文共 676 字,大约阅读时间需要 2 分钟。
没事,玩玩儿~~~:)
按书上的例子来作。。
#!/usr/bin/env python#Simple Server - Chapter 1 -server.pyimport sockethost = ''port = 51423s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)s.bind((host, port))s.listen(1)print "Server is running on port %d; press Ctrl-C to stop." % portwhile 1: clientsock, clientaddr = s.accept() clientfile = clientsock.makefile('rw', 0) clientfile.write("Welcom, " + str(clientaddr) + "\n") clientfile.write("Please enter a string: ") line = clientfile.readline().strip() clientfile.write("You entered %d characters.\n" % len(line)) clientfile.close() clientsock.close()
在机器上测试效果如下:
转载地址:http://efhpo.baihongyu.com/