我按照网上指导 copy 了一个很简单的多线程 TCPServer 运行起来。代码如下
TCPServer.rb
require "socket"
server = TCPServer.open "localhost",2000 server.listen 10000
loop { # Servers run forever Thread.start(server.accept) do |client| client.puts(Time.now.ctime) # Send the time to the client client.puts "Closing the connection. Bye!" client.close # Disconnect from the client puts "one client gone" end }
它给的Client.rb
的代码如下
require 'socket' # Sockets are in standard library
hostname = 'localhost' port = 2000 s = TCPSocket.open(hostname, port)
while line = s.gets # Read lines from the socket puts line.chop # And print with platform line terminator end s.close # Close the socket when done
分别运行服务器和客户端是没有问题的。但是我比较困惑的是如果在浏览器里面输入
localhost:2000
的时候有时候是好的
可以显示两行信息 Time 和 Closing the connection. Bye!
不停刷新地过程中有时候只会显示第一行,有时候提示页面载入出错(FireFox),不知道这是什么道理。
还有一个很奇怪的地方,我在TCPServer.rb
的 loop 循环里面最后加入了一句
puts "one clien gone"
可是运行的时候在服务器端的控制台看不到信息,最开始运行的时候是有的,后来不知道怎么弄没了。。。