清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
1 2 3 4 5 6 7 8 | require 'socket' host = "localhost" port = 12345 TCPSocket.open(host, port) do |s| # Use block form of open while line = s.gets puts line.chop end end |
2015/02/18 40014
清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
1 2 3 4 5 6 7 8 | require 'socket' host = "localhost" port = 12345 TCPSocket.open(host, port) do |s| # Use block form of open while line = s.gets puts line.chop end end |